Merge pull request #269 from Ayush-Mahajan/master

hello.cpp
This commit is contained in:
Luke Oliff 2018-10-08 09:52:55 -07:00 committed by GitHub
commit 4bb9fd9aff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 16 additions and 0 deletions

7
code/Ayush-Mahajan.c Normal file
View File

@ -0,0 +1,7 @@
#include<stdio.h>
int main()
{
printf("Hello World");
return 0;
}

9
code/Ayush-Mahajan.cpp Normal file
View File

@ -0,0 +1,9 @@
#include<iostream>
using namespace::std;
int main()
{
cout << "hello world";
return 0;
}