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!";
}

The output for the above program will be given as shown below.
Hello World!"