gpt4 book ai didi

c - 理解指针数组

转载 作者:行者123 更新时间:2023-12-04 10:45:19 24 4
gpt4 key购买 nike

我正在做这样的事情;

int main()
{
int *b[2], j;
for (j = 0; j < 2; j++)
{
b[j] = (int *)malloc(12 * sizeof(int));
}
return 0;
}

请告诉我这条指令的真正含义是什么?以及如何将这个指针数组传递给函数以访问类似 *(B[0]+1),*(B[1]+1) 的值等等?

最佳答案

int main(void)
{
int *b[2], j; // initialization of an array of pointers to integers (size = 2)
for (j = 0; j < 2; j++) // for each of the pointers
{
b[j] = malloc(12 * sizeof (int)); // allocate some space = 12 times size of integer in bytes (usually 4)
}
return 0;
}

如果你想把这个数组传递给一个函数,你可以只传递 b
foo(b);

关于c - 理解指针数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59735011/

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