In this post, we are going to write a C++ program to print message on the screen.
C++ program to print message on the screen.
#include<iostream> // header file int main(void) // main function { std::cout<<"Welcome to c++ programming"; //output statement return 0; }
Output
Welcome to c++ programming.