[填空題] 以下程序中給指針p分配三個double型動態(tài)內存單元,請?zhí)羁铡? # include <stdio.h> main() double *p; p
2021-07-20
[填空題] 以下程序中給指針p分配三個double型動態(tài)內存單元,請?zhí)羁铡?/p>
# include <stdio.h>
main()
double *p;
p=(double*)malloc(______);
p[0]=1.5;p[1]=2.5;p[2]=3.5;
printf("%f%f%f",p[0]’p[1],p[2]);
正確答案:3*sizeof(double)或size(double)*3或24或3*8或8*3
詞條內容僅供參考,如果您需要解決具體問題
(尤其在法律、醫(yī)學等領域),建議您咨詢相關領域專業(yè)人士。