#include <stdio.h> void main() { int A=10, B; int *C = &B; B=A--; //B=10 B += 20; //B=10+20 printf("%d", *C); //*C=&B 니까, 30 출력 }
To embed this project on your website, copy the following code and paste it into your website's HTML: