gpt4 book ai didi

c - 警告 : initialization makes pointer from integer without a cast in C

转载 作者:行者123 更新时间:2023-12-04 05:06:35 30 4
gpt4 key购买 nike

我收到警告:初始化使指针从整数变为没有在 C 中进行强制转换。什么是强制转换?我该怎么办?

void UpdateElement(Console* console)
{
DynamicVector* CostList=getAllCosts(console->ctrl);
int i,n;
printf("Give the position of the element you want to delete:");
scanf("%d",&n);
for(i=n-1;i<getLen(CostList);i++)
{
Cost* c=(Cost*)getElementAtPosition(CostList,i);
Cost* c2=AddCost(console); **//here I get the warning**
update_an_element(console->ctrl,c,c2,i);
}
}

Console* initConsole(Controller* ctrl)
{
Console* console=(Console*)malloc(sizeof(Console));
console->ctrl=ctrl;
return console;
}

int createCost(Controller* ctrl, char* day, char* type, int sum)
{
Cost* c=initCost(day,type,sum);
save(ctrl->repo,c);
return c; **//now here I get the warning**

}

最佳答案

c类型为 Cost*和函数 createCost返回 int .两者都不兼容,这就是编译器提示缺少强制转换的原因,但在这种情况下您不想强制转换。

将该函数的返回类型更改为 Cost*

关于c - 警告 : initialization makes pointer from integer without a cast in C,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15464820/

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