This is the most basic program, in fact the first thing you try in any language.
Source code :
#include <iostream> //input output library
#include <conio.h>
using namespace std;
void main()
{
cout << " Hello World! "; //cout displays what ever you write in these double quotes
_getch();
}
0 comments:
Post a Comment