14 lines
263 B
C++
14 lines
263 B
C++
// Necessary header files for input output functions
|
|
#include <iostream>
|
|
using namespace std;
|
|
|
|
// main() function: where the execution of
|
|
// C++ program begins
|
|
int main() {
|
|
|
|
// This statement prints "Hello World"
|
|
cout << "Hello World";
|
|
|
|
return 0;
|
|
}
|