fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. double* a;
  5. a = (double *)malloc(sizeof(double)*5);
  6. for(int i=0;i<5;i++){
  7. a[i]=(double)i/10.0;
  8. }
  9.  
  10. for(int i=0;i<5;i++){
  11. printf("a[%d]のアドレスは %p\n", i,&(a[i]));
  12. printf("その中身は %lf\n", a[i]);
  13. }
  14. return 0;
  15. }
  16.  
Success #stdin #stdout 0s 5280KB
stdin
Standard input is empty
stdout
a[0]のアドレスは 0x55f8b28c6260
その中身は 0.000000
a[1]のアドレスは 0x55f8b28c6268
その中身は 0.100000
a[2]のアドレスは 0x55f8b28c6270
その中身は 0.200000
a[3]のアドレスは 0x55f8b28c6278
その中身は 0.300000
a[4]のアドレスは 0x55f8b28c6280
その中身は 0.400000