fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main(void) {
  5. double* a;
  6. a = (double*)malloc(sizeof(double)*5);
  7. // ここまでで、int型の配列(長さ4)ができた。
  8. int i;
  9.  
  10. for(i=0; i<5; i++){
  11. a[i]=(double)i/10;
  12. printf("a[%d]のアドレスは%p\n",i,&(a[i]));
  13. printf("その中身は%lf\n",a[i]);
  14. }
  15.  
  16. return 0;
  17. }
  18.  
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
a[0]のアドレスは0x55c9d786a260
その中身は0.000000
a[1]のアドレスは0x55c9d786a268
その中身は0.100000
a[2]のアドレスは0x55c9d786a270
その中身は0.200000
a[3]のアドレスは0x55c9d786a278
その中身は0.300000
a[4]のアドレスは0x55c9d786a280
その中身は0.400000