The very first program you will find in any book is the hell program.
It just prints hello on the screen.
Here is the source code of the program in c++.
/* prints hello on the screen */
#include<iostream.h>
int main()
{
cout<<"Hello";
return 0;
}
No comments:
Post a Comment