#include int main(void){ int a[3]; int i; printf("a の内容 = %p\n", a); for ( i = 0; i < 3; i++ ){ printf("a[%d] のアドレス = %p\n", i, &a[i]); } return 0; }