gpt4 book ai didi

C:警告:赋值使指针来自整数而不进行强制转换[默认启用]

转载 作者:行者123 更新时间:2023-11-30 18:10:53 26 4
gpt4 key购买 nike

对 C 有点陌生,并且对我在此函数中收到的警告感到困惑:

void fillPrioritiesArr(int ** priorities, int arrSize) { 
int currIdx = 0;
while(currIdx < arrSize){
priorities[currIdx]=malloc(sizeof(int));
priorities[currIdx] = (int) rand() % 10;
currIdx++;
}
}

具体来说这一行:

priorities[currIdx] = (int) rand() % 10;

难道是因为一个是指针变量,另一个是int造成的?还是我对此的理解完全错误?

最佳答案

试试这个

void fillPrioritiesArr(int ** priorities, int arrSize) { 
int currIdx = 0;
while(currIdx < arrSize){
priorities[currIdx]=malloc(sizeof(int));
*priorities[currIdx] = (int) rand() % 10;
currIdx++;
}
}

关于C:警告:赋值使指针来自整数而不进行强制转换[默认启用],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53814905/

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