Added C90 and C++98 (#737)

This commit is contained in:
Vivekyadavgithub
2020-04-24 21:34:12 +05:30
committed by GitHub
parent bc106f0254
commit b27ddf35d7
3 changed files with 18 additions and 0 deletions

7
c/c90.c Normal file
View File

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