我已经使用Valkyrie GUI和Code :: Blocks尝试了Valgrind,但是我真的不知道如何创建一个项目来在调试器中运行它,或者它根本不起作用。 printf("here")
行仅用于检查错误,但是有时返回“ here4”。它总是返回Segmentation fault: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;
}
答案 0 :(得分:0)
由于某种原因,每个人都使用评论而不是答案,所以如果没人愿意添加自己的答案,那么我将在5分钟内接受该答案。