Skip to content
This repository has been archived by the owner on Jan 1, 2019. It is now read-only.

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
srbcheema1 committed Oct 1, 2017
0 parents commit 7ec579e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
a.out

5 changes: 5 additions & 0 deletions hello_world.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#include<stdio.h>

int main(){
printf("hello world\n");
}
5 changes: 5 additions & 0 deletions hello_world.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#include<iostream>

int main(){
std::cout<<"hello world"<<std::endl;
}

0 comments on commit 7ec579e

Please sign in to comment.