In this post we will learn to print "Hello World!" using C++ programming language. In order to print the specified message in the output screen we write following code snippet.
#include <iostream>
using namespace std;
int main()
{
/* cout displays the specified message in the output screen */
cout<<"Hello World!";
}
Hello World!"
0 Comments