我正在尝试在C中执行反向字符串问题,我知道还有其他方法可以做到这一点,但我很困惑为什么以下解决方案不起作用。 (我将把输出放在下面)
/*Write a function reverse (s) that reverses the character strings. Use it to write a program that reverses its input a line at a time*/
#include <stdio.h>
#define MAXLENGTH 1000
int ngetline(char s[], int lim);
void nreverse(char s[], int index);
main(){
int len;
char line[MAXLENGTH];
while(len = ngetline(line, MAXLENGTH) > 0)
{
printf("length: %d\n", len);
nreverse(line, len);
}
printf("%s", line);
return 0;
}
int ngetline(char s[], int lim)
{
int c;
int i;
for(i = 0; i < lim -1 && (c = getchar()) != EOF && c != '\n'; ++i)
{
s[i] = c;
}
if(c == '\n')
{
s[i] = c;
++i;
}
s[i] = '\0';
printf("i: %d\n", i);
return i;
}
void nreverse(char s[], int len)
{
int i, backIndex;
int halfway;
char temp;
backIndex = len - 2;
halfway = backIndex / 2;
for(i = 0; i <= halfway; ++i)
{
printf("In the for\n");
temp = s[i];
s[i] = s[backIndex];
s[backIndex] = temp;
--backIndex;
}
}
这是输出:
./reverseString
entering while
String to be Reversed
i: 22
length: 1
正如您在代码中看到的,我将长度设置为等于返回i的函数ngetline()。但是当我打印/尝试获取长度时,它返回1.有人知道为什么会发生这种情况吗?谢谢。
这是一个c
operator precedence的事情。由于关系(>
)具有比赋值(=
)更高的优先级,因此首先对其进行求值,因此您将值True
(或1
)赋值给变量len
。尝试将作业放在括号中:
while((len = ngetline(line, MAXLENGTH)) > 0)