gpt4 book ai didi

c - 使用 calloc 分配矩阵 4 行,每行 7 个字节

转载 作者:太空宇宙 更新时间:2023-11-04 02:48:07 24 4
gpt4 key购买 nike

<分区>

下面分配矩阵4X7的代码有问题吗?

char** imd = (char**)calloc(4, 7);


for (i=0; i < 4; i++)
imd[i] = (char*)calloc(7, sizeof(char));

//then free allocated memory as below

for (i=0; i<4; i++)
free(imd[i]);

free(imd);

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com