Skip to content

Commit

Permalink
Create Hello_World.cpp
Browse files Browse the repository at this point in the history
This program generates an output printing Hello World in C++.
  • Loading branch information
ns98 authored Oct 9, 2018
1 parent d95881c commit a6cf3e6
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions C++/Hello_World.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#include<bits/stdc++.h>
using namespace std;
int main()
{
cout<<"Hello World"<<"\n";
return 0;
}

0 comments on commit a6cf3e6

Please sign in to comment.