home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programming Win32 Under the API
/
ProgrammingWin32UnderTheApiPatVillani.iso
/
Chapter4
/
4-2
/
hello.c
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
2000-07-16
|
190 b
|
15 lines
#include <stdio.h>
int main(int argc, char *argv[])
{
char szBuf[10];
printf("Hello world\n");
printf("Enter a character to exit: ");
scanf("%s", szBuf);
return 0;
}