Skip to content

Commit f6dc5a0

Browse files
authored
Update helloworld.cpp
1 parent a513bd2 commit f6dc5a0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

helloworld.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
/*
33
The following c++ code is A fundamental componenet of every c++ programming
44
*/
5-
#include<iostream>
5+
#include<iostream> //header
66
using namespace std;
77
int main() {
8-
cout << "Hello World!";
8+
cout << "Hello World!"; // c++ statement
99
return 0;
10-
}
10+
} //end of the main function/ program

0 commit comments

Comments
 (0)