gpt4 book ai didi

c - 为什么这个检查一行是否是回文的程序会返回段错误?

转载 作者:行者123 更新时间:2023-11-30 16:24:05 24 4
gpt4 key购买 nike

我已经使用 Valkyrie GUI 和 Code::Blocks 尝试过 Valgrind,但我真的不知道如何创建一个项目来在调试器中运行它,或者它根本不起作用。 printf("here") 行只是用于检查错误是否存在,但是,它有时只是返回“here4”。它总是返回段错误:11,并且我看不到任何正在寻址我不拥有的内存的行。

#include <stdio.h>
#include <string.h>
int c, length=-1, n, m, palindrome, line[250];
int half[126];
int half2[126];
char string[250];
char charac[2];
int main(){
while(c!=EOF){
c=getchar();
if(c=='\n' || c==EOF){ /*End of line*/
/*Copies first half of line*/
while(n<=length/2){
half[n]=line[n];
++n;
}
/*Copies second half of line*/
for(n=0, m=length; n<=length/2; ++n, --m){
half2[n]=line[m];
}
/*Tests if line is palindrome*/
for(palindrome=1, n=0; palindrome && n<=length/2; ++n){
if(half[n]!=half2[n])
palindrome=0;
}
if(palindrome)
printf("%s\nis a palindrome.\n", string);
length=-1;
n=0;
m=0;
string[0]=0;
while(n<=125){
half[n]=0;
half2[n]=0;
++n;
}
n=0;
}
else{
/*printf("here4");*/
++length;
if(length>500)
break; /*prevent overflow*/
line[length]=c;
sprintf(charac, "%c", c);
strcat(string, charac);
}
}
return 0;
}

最佳答案

由于某种原因,每个人都使用评论而不是答案,所以如果没有人想添加自己的答案,我将在 5 分钟内接受这个答案,这样问题就结束了。

关于c - 为什么这个检查一行是否是回文的程序会返回段错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53712735/

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