fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int a;
  5. int *b;
  6.  
  7. //これの違いは、
  8.  
  9. //aは整数そのものを入れられる箱
  10. //bは整数型の箱の住所(アドレス)を入れられる箱
  11.  
  12. b=&a; //のように使う。
  13.  
  14. //ただし、bの中身を取り出したい時、*bと書かなければならない。
  15. //例
  16.  
  17. printf("%d",*b);
  18.  
  19. return 0;
  20. }
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
Standard output is empty