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. for(int i=0;i<5;i++){
  9. a[i] = (double)i/10.0;
  10. }
  11.  
  12. for(int i=0;i<5;i++){
  13. printf("a[%d]のアドレスは %p\n",i,&a[i]);
  14. printf("a[%d]の中身は %lf\n",i,a[i]);
  15.  
  16. }
  17.  
  18. return 0;
  19. }
  20.  
Success #stdin #stdout 0.01s 5292KB
stdin
Standard input is empty
stdout
a[0]のアドレスは 0x561d51e59260
a[0]の中身は 0.000000
a[1]のアドレスは 0x561d51e59268
a[1]の中身は 0.100000
a[2]のアドレスは 0x561d51e59270
a[2]の中身は 0.200000
a[3]のアドレスは 0x561d51e59278
a[3]の中身は 0.300000
a[4]のアドレスは 0x561d51e59280
a[4]の中身は 0.400000