Files
hello-world/c/c++.cpp
2018-08-22 01:37:32 -03:00

10 lines
214 B
C++
Executable File

#include <iostream> // include API
using namespace std;
int main() // the main code portion of a C++ program
{
cout << "Hello World" << endl; //print Hello World on the screen
return 0; // conventional
}