#include int main(void){ int a; a = 45; printf("aの値は、%d\naのアドレスは、%p\n",a,&a); //&aとすることでaのアドレスを指定できる。 //アドレスを表示するときは%pを使用する。 return 0; }