정보처리기사 2022년 1회 72번

From IT Wiki
Revision as of 01:01, 22 October 2022 by Maintenance script (talk | contribs) (Imported from text file)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

과목: 프로그래밍 언어 활용

문제[edit | edit source]

72. 다음 C언어프로그램이 실행되었을 때, 실행 결과는?

<br />#include <stdio.h><br />#include <stdlib.h><br />int main(int argc, char *argv[]) {<br />    int i=0;<br />    while(1) {<br />        if(i==4) {<br />            break;<br />        }<br />    ++i;<br />    }<br />    printf("i=%d", i);<br />    return 0;<br />}<br />
  • ① i = 0
  • ② i = 1
  • ③ i = 3
  • ④ i = 4

풀어보기[edit | edit source]

정답[edit | edit source]

  • 4번

해설[edit | edit source]

같이 보기[edit | edit source]