home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD2.mdf
/
gnu
/
djgpp
/
tests
/
t13.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
|
1993-07-24
|
186 b
|
13 lines
main()
{
int i;
printf("should take ten seconds (250 ms each)\n");
for (i=0; i<40; i++)
{
write(1, "x", 1);
usleep(250000);
}
printf("\n");
return 0;
}