C++ Beginners Programming Day 1

Write your first C++ Code:

#include<iostream.h>
main()
{
cout<<"Hello World"; 
}

#include(iostream.h) //Header file for input/output stream

main() // Main Function from where operating system starts to run a program.

{ //Opening Parenthesis used to open main function

cout<<"Hello World"; // COMMAND for printing message on screen

} //Closing Parenthesis used to close main function