Files
ST-CLanguage/Practice_03/p03-6.c
2025-09-25 17:45:37 +09:00

11 lines
181 B
C

#include <stdio.h>
int main(){
int a = 100;
int b;
printf("변수 a : %d, 주소 -> %p\n", a, &a);
printf("변수 b : %d, 주소 -> %p\n", b, &b);
return 0;
}