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