포인트의 원리이해
int main(void) { int num = 10; int * ptr1 = # int * ptr2 = ptr1; (*ptr1)++; (*ptr2)++; printf("%d \n", num); return 0; }