home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ARM Club 1
/
ARM_CLUB_CD.iso
/
contents
/
apps
/
program
/
s
/
unixlib1
/
!UnixLib
/
test
/
c
/
stdtest
< 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
Text File
|
1994-03-08
|
300 b
|
20 lines
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
static char *h = "Hello World Hello World Hello World";
int
main ()
{
int l = strlen (h);
setvbuf (stdout, 0, _IOFBF, 16);
fwrite (h, 1, l, stdout);
putchar ('\n');
fputs (h, stdout);
putchar ('\n');
puts (h);
return 0;
}