#include <stdio.h>


int main (void){
	int a=10;
	int *p;
	p=&a;
	printf("変数aのアドレス &a=%p\n",&a);
	printf("ポインタの変数pのアドレスp=%p\n",p);
	return 0;
}
