home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga MA Magazine 1998 #6
/
amigamamagazinepolishissue1998.iso
/
coders
/
c2local
/
example
/
hello.c
< prev
next >
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
|
1978-01-01
|
122 b
|
12 lines
#include <stdio.h>
#include <stdlib.h>
char *p="This is a short text";
main()
{
puts("Hello world!");
puts(p);
}