C++

Let us look at a simple code that would print the words Hello World.

Let us look at a simple code that would print the words Hello World.


#include <iostream>

using namespace std;

 

// main() is where program execution begins.

 

int main()

{

   cout << "Hello World"; // prints Hello World

   return 0;

}

Return to top