Hello world in c++

#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.
}

0 അഭിപ്രായ(ങ്ങള്‍):