C++ Program To Print A String On The Screen
Let us start with a simple example of a C++ program that prints a string on the screen.
\\My First C++ Program
#include
int main()
{
cout<<"WELCOME TO C++ PROGRAMMING";
return 0;
}
OUTPUT:
WELCOME TO C++ PROGRAMMING
NOTE: You have any problem in above C Program do not hesitate and write your problem in the comment box. I will support your problem.