home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
RISCWORLD 7
/
RISCWORLD_VOL7.iso
/
Software
/
Issue2
/
SDL.ARC
/
!gcc
/
examples
/
c
/
hellow
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2001-01-02
|
138 b
|
12 lines
/* c.hellow.
The simple Hello World application. */
#include <stdio.h>
int main (void)
{
printf ("Hello World\n");
return 0;
}