• Source
    1. #include<iostream>
    2. using namespace std;
    3. // main function
    4. // where the execution of program begins
    5. int main()
    6. {
    7. // prints Hello world
    8.  
    9. cout<<"Hello World";
    10.  
    11. return 0;
    12. }
    13.