Computer/초보자를 위한 C 언어 300제
039. 배열 이해하기
Theo Kim
2010. 11. 13. 23:41
#include <stdio.h>
main()
{
int kor[10] = {100, 90, 35, 60, 75, 55, 95, 80, 90, 70};
int i;
for( i = 0; i < 10; i++ )
{
printf( "%d ", kor[i] );
}
}