#include<stdio.h>main(){ int a; int *b; b = &a; printf("변수 a의 주소 값은 %d입니다.\n", &a); printf("변수 a의 주소 값은 %d입니다.\n", b);}