Files
hello-world/c/c++98.cpp
2020-04-25 04:04:12 +12:00

10 lines
138 B
C++

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