달력

11

« 2025/11 »

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
2020. 8. 12. 11:28

C_포인터 연산자 문제 17 Python & C2020. 8. 12. 11:28

#include <stdio.h>
void main()
{
int x, y, *ptr;
x=10; y=20; ptr=&x; y=*ptr;
printf("%d", *ptr  += 1);
}

결과 ; 11

:
Posted by gonlab