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

Popular posts from this blog

Variable Example C++ Program

Local and Global Variable example C++ program