home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Beginning C++ Through Gam…rogramming (2nd Edition)
/
BCGP2E.ISO
/
bloodshed
/
devcpp-4.9.9.2_setup.exe
/
Templates
/
Hello_cpp.txt
< prev
next >
Wrap
Text File
|
2003-02-12
|
200b
|
12 lines
#include <iostream>
using namespace std;
int main (int argc, char *argv[])
{
cout << "Hello World!" << endl;
cout << "Press ENTER to continue..." << endl;
cin.get();
return 0;
}