IT
C언어 포인터 변수 활용 예시
agnusdei1207
2023. 5. 1. 01:46
반응형
SMALL
#include <stdio.h>
int main(void){
int x = 10;
int *p;
*p = &x;
printf("x : %d\n", x);
*p = 20;
printf("x : %d\n", x);
return 0;
}
반응형
LIST