Friday, 29 July 2016

A SIMPLE C++ PROGRAM FOR BEGINNERS

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

using namespace std;

int main()

{

cout << "Hello World!" << endl;

return 0;

}