home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Sams Teach Yourself C in 21 Days (6th Edition)
/
STYC216E.ISO
/
pc
/
Dev-C++
/
_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;
}