fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int a=10;
  5. int *p;
  6. p=&a;
  7.  
  8. *p=100;
  9. // double b;
  10. printf("変数aのアドレス %d\n",a);
  11. //printf("ポインタpのアドレス p=%p\n",p);
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0s 5276KB
stdin
Standard input is empty
stdout
変数aのアドレス 100