a c++ program

/*
this is a program to demonstrate the basics of
a c++ programme, it includes comments,
header files, the main() function and cout
*/

#include <iostream>
using namespace std;

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

No comments: