当我在Microsoft Visual Studio中构建以下代码时,它成功构建,但执行失败。命令控制台窗口告诉错误存在且程序已停止。
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
int is_palindrome(char *str)
{
int len;
int halflen;
len = strlen(str);
if (len% 2 == 0)
halflen = len / 2;
else halflen = (len - 1)/2;
for (int i=0; i < len; i++)
{
if ((str[i] <= 90) && (str[i] >= 65))
{
str[i] = str[i] + 32;
}
}
for (int j=0; j < halflen; j++)
{
printf("str[j] = %c and str[len-1-j] = %c \n", str[j], str[len - 1 - j]);
if (str[j] != str[len-1-j])
{
return 0;
}
}
printf("str is: %s\n", str);
return 1;
}
#ifndef RunTests
int main()
{
char *str = "deleveled";
printf("%d", is_palindrome(str));
}
#endif
我发现问题是由下面的部分引起的。你能说出为什么这部分代码会导致执行错误吗?
for (int i=0; i < len; i++)
{
if ((str[i] <= 90) && (str[i] >= 65))
{
str[i] = str[i] + 32;
}
}