039. 배열 이해하기039. 배열 이해하기

Posted at 2010. 11. 13. 23:41 | Posted in Computer/초보자를 위한 C 언어 300제
#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] );
	}
}
//