| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | #define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #define SIZE 5 int main(void) { int scores[SIZE] = { 31, 63, 62, 87, 14 }; int i; for (i = 0; i < SIZE; i++) printf("scores[%d] = %d\n", i, scores[i]); return 0; } | cs |


http://itsys.hansung.ac.kr/cgi-bin/onlineTest/viewCcoding/onlineCcoding.cgi?source=src/chap07/score5.c
CÇÁ·Î±×·¡¹Ö(ÇÁ·Î±×·¡¹Ö¾ð¾î) ½Ç½À°Ô½ÃÆÇ