From 989390fe808e87e9578c47c35f2215c4c522cd12 Mon Sep 17 00:00:00 2001 From: TheMrIron2 Date: Thu, 7 Dec 2017 21:24:00 +0000 Subject: [PATCH] Annotated better for beginners, fixed typo --- c/c++.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 }