Skip to content

Commit eb3ef87

Browse files
authored
Create helloworld.cpp
1 parent ed73be4 commit eb3ef87

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

helloworld.cpp

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
//Hello world program in C++
2+
#include<iostream>
3+
using namespace std;
4+
int main() {
5+
cout << "Hello World!";
6+
return 0;
7+
}

0 commit comments

Comments
 (0)