home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
vol_400
/
422_01
/
count.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
|
1994-03-27
|
204 b
|
12 lines
#include cflea.h
/*
* Count to 1000, and display numbers as ASCII
*/
main()
{
int i;
for(i=0; i < 1000; ++i)
printf("%u\n", i);
asm " FCB $FF"; /* Illegal opcode to stop simulator */
}