gpt4 book ai didi

c - 此代码正在生成段核心转储

转载 作者:行者123 更新时间:2023-11-30 15:26:46 27 4
gpt4 key购买 nike

这段代码正在生成一个分段核心转储。

typedef struct linked{
int val;
struct linked *index;
}linked;


struct linked *temp1;

int count=1;
while(count<10){

temp1->val=count;
temp1=temp1->index;

count++;

} //end of while

while(temp1!=NULL){
printf(" %d\n",temp1->val);
temp1=temp1->index;
}

最佳答案

struct linked *temp1 = malloc(sizeof(struct linked));

为指针分配内存

关于c - 此代码正在生成段核心转储,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27300072/

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