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