A simple C++ program, Hello World!

A simple C++ program, Hello World!
Download C++ Compiler here : bakhtshirensoft.blogspot.my/2015/11/dev-c-511.html

Let's use the code below to find what makes up a very simple C++ program - one that simply prints "Hello World!" and stops.

the code :


#include <iostream>

using namespace std;

int main()
{
 cout << "Hello World!" << endl;
 return 0;
}


The Output





Previous Post Next Post