정보처리기사 2021년 2회 63번
From IT Wiki
과목: 프로그래밍 언어 활용
문제[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번