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