정보처리기사 2021년 2회 72번
From IT Wiki
Revision as of 01:00, 22 October 2022 by Maintenance script (talk | contribs) (Imported from text file)
과목: 프로그래밍 언어 활용
문제[edit | edit source]
72. 다음 C언어 프로그램이 실행되었을 때의 결과는?
#include <stdio.h>
int main(int argc, char *argv[ ]) {
char a;
a=‘A’+1;
printf("%d", a);
return 0;
}
- ① 1
- ② 11
- ③ 66
- ④ 98
풀어보기[edit | edit source]
정답[edit | edit source]
- 3번