我在将指向结构的指针传递给函数时遇到问题。我的代码基本上如下所示。在主函数中调用 modify_item 后,stuff == NULL。我希望 stuff 是指向元素等于 5 的项目结构的指针。我做错了什么?
void modify_item(struct item *s){
struct item *retVal = malloc(sizeof(struct item));
retVal->element = 5;
s = retVal;
}
int main(){
struct item *stuff = NULL;
modify_item(stuff); //After this call, stuff == NULL, why?
}