This commit is contained in:
ayush 2018-10-08 01:44:05 +05:30 committed by GitHub
parent bad10e0d46
commit 287610ab66
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

7
code/hello.c Normal file
View File

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