정보처리기사 2021년 2회 63번

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

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

문제[edit | edit source]

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

#include <stdio.h>
int main(int argc, char *argv[ ]) {
int a=4;
int b=7;
int c=a | b;
printf("%d", c);
return 0;
}

  • ① 3
  • ② 4
  • ③ 7
  • ④ 10

풀어보기[edit | edit source]

정답[edit | edit source]

  • 3번

해설[edit | edit source]

같이 보기[edit | edit source]