다음 C 언어 프로그램을 실행한 결과로 옳은 것은?
#include <stdio.h>
main() {
int i = 0;
while (1) {
if (i == 4)
break;
i++;
}
printf("%d", i);
}- 13
- 24
- 35
- 46
꿈라CBT