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

9
c/c++98.cpp Normal file
View File

@@ -0,0 +1,9 @@
#include<iostream.h>
#include<conio.h>
int main(int argc, char** argv)
{
cout << "Hello World" << endl;
getch();
return 0;
}