home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2001 May
/
PCWorld_2001-05_cd.bin
/
Software
/
Vyzkuste
/
devc
/
_SETUP.6
/
Group21
/
Hello_cpp.txt
< prev
next >
Wrap
Text File
|
2000-07-15
|
217b
|
13 lines
#include <windows.h>
#include <iosteam.h>
#include <stdio.h>
#include <stdlib.h>
int main()
{
cout << "Hello World!" << endl;
cout << "Press ENTER to continue..." << endl;
getchar ();
return 0;
}