diff --git a/c/c++.cpp b/c/c++.cpp index 7b3b10b6..2b935d2a 100644 --- a/c/c++.cpp +++ b/c/c++.cpp @@ -1,9 +1,9 @@ -#include +#include // include API using namespace std; -int main() +int main() // the main code portion of a C++ program { - cout << "Hello World" << endl; //print Hello Word on the screen - return 0; // for convention + cout << "Hello World" << endl; //print Hello World on the screen + return 0; // conventional }