fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int x=10;
  5. int *p;
  6. p=&x;
  7. printf("xの値は%d\n",x);
  8. printf("xのアドレスは%p\n",&x);
  9. printf("pのアドレスは%p\n",p);
  10. printf("ポインタpの指す値は%d\n",*p);
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
xの値は10
xのアドレスは0x7fff8e987c94
pのアドレスは0x7fff8e987c94
ポインタpの指す値は10