Simple C++ program 'Hello World"
Hello World
#include < iostream.h >
//tells compiler to include std input output header file.
int main()
{
cout<<"Hello world\n";
//prints Hello world on user screen
return 0;
//return the value zero to the OS.
}
Comments
Post a Comment