home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
World of A1200
/
World_Of_A1200.iso
/
datafiles
/
text
/
c_tutor
/
intarray.c
< prev
next >
Wrap
C/C++ Source or Header
|
1995-02-27
|
229b
|
13 lines
main()
{
int values[12];
int index;
for (index = 0;index < 12;index++)
values[index] = 2 * (index + 4);
for (index = 0;index < 12;index++)
printf("The value at index = %2d is %3d\n",index,values[index]);
}