gpt4 book ai didi

c - 为什么这段代码在 gcc 中给出段错误

转载 作者:行者123 更新时间:2023-11-30 21:20:59 25 4
gpt4 key购买 nike

void init(){

pre=malloc(sizeof(char)*50);
opt=malloc(sizeof(char)*50);
p=malloc(sizeof(char)*50);
prec=0;
printf("%p\n%p\n%p\n",p,opt,pre);
printf("Enter the infix exp\n");
fgets(p,50,stdin);
if(strlen(p)-1=='\n')
p[strlen(p)-1]='\0';
}

即使我使用指针来输入字符串。我已经检查了所有指针是否为 null

最佳答案

if(strlen(p)-1=='\n')

应该是

if(p[strlen(p) - 1] == '\n')

这将检查 p 的最后一个字符是否是从 fgets 获取的 \n

关于c - 为什么这段代码在 gcc 中给出段错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32164073/

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