83ded6eb54
git-svn-id: http://picoc.googlecode.com/svn/trunk@397 21eae674-98b7-11dd-bd71-f92a316d2d60
13 lines
317 B
C
13 lines
317 B
C
int Count;
|
|
|
|
int Array[10] = { 12, 34, 56, 78, 90, 123, 456, 789, 8642, 9753 };
|
|
|
|
for (Count = 0; Count < 10; Count++)
|
|
printf("%d: %d\n", Count, Array[Count]);
|
|
|
|
int Array2[10] = { 12, 34, 56, 78, 90, 123, 456, 789, 8642, 9753, };
|
|
|
|
for (Count = 0; Count < 10; Count++)
|
|
printf("%d: %d\n", Count, Array2[Count]);
|
|
|