home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Interactive Guide
/
c-cplusplus-interactive-guide.iso
/
c_ref
/
csource3
/
161_01
/
402.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1985-08-30
|
156 b
|
14 lines
#include "timer1.h"
#define ASIZE 100
int a[ASIZE], i;
DO_STMT("Integer indexed looping")
for (i = 0; i < ASIZE; i++)
a[i] = 0;
OD
}