7c9b3c1c8a
git-svn-id: http://picoc.googlecode.com/svn/trunk@70 21eae674-98b7-11dd-bd71-f92a316d2d60
13 lines
172 B
C
13 lines
172 B
C
int Count;
|
|
int Array[10];
|
|
|
|
for (Count = 0; Count < 10; Count++)
|
|
{
|
|
Array[Count] = Count * Count;
|
|
}
|
|
|
|
for (Count = 0; Count < 10; Count++)
|
|
{
|
|
printint(Array[Count]);
|
|
}
|