정보처리기사 2021년 3회 71번

From IT Wiki

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

문제[edit | edit source]

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

<br />#include <stdio.h><br />int main(void) {<br />    int n=4;<br />    int* pt=NULL;<br />    pt=&n;<br /><br />    printf("%d", &n+*pt-*&pt+n);<br />    return 0;<br />
  • ① 0
  • ② 4
  • ③ 8
  • ④ 12

풀어보기[edit | edit source]

정답[edit | edit source]

  • 3번

해설[edit | edit source]

같이 보기[edit | edit source]