Showing posts with label hello world. Show all posts
Showing posts with label hello world. Show all posts

Thursday, February 28, 2013

1st program (Display Hello World)

This program helps to display a line in C++



#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
cout<<"Hello World this is my first C++ Program";
getch();
}

Link to download the Compiled program