Posted by: Abhay Kant on: July 4, 2009
How to create a Hello program in c++ ?
well , in all the c++ books wheathe r it deals with higher coding or low fi coding it always strats with this example.
#include<iostream.h>
void main()
{
cout<<”Hello World”;
}
SocialVibe