gpt4 book ai didi

c - strcasecmp 不返回零

转载 作者:太空狗 更新时间:2023-10-29 16:06:05 25 4
gpt4 key购买 nike

我想知道为什么 strcasecmp() 在我第一次使用它时返回 0 而不是第二次。

在这个例子中,我专门将“hello world”输入到标准输入中。不是打印 0 0,而是打印 0 10。我有以下代码。

#include "stdio.h"
#include "string.h"

int main(void) {

char input[1000];
char *a;

fgets(input, 1000, stdin);

a = strtok(input, " ");
printf("%d\n",strcasecmp(a,"hello")); //returns 0

a = strtok(NULL, " ");
printf("%d\n",strcasecmp(a,"world")); //returns 10


return 0;
}

我做错了什么?

最佳答案

你在 hello world 之后输入的换行符是 world 标记的一部分,因为你使用空格作为标记分隔符。

如果您使用 strtok(input, "\n"); 而不是 strtok(input, "");,程序将正常运行。事实上,您可能还想使用制表符作为标记分隔符。

整个程序将是:

#include "stdio.h"
#include "string.h"

int main(void) {

char input[1000];
char *a;

fgets(input, 1000, stdin);

a = strtok(input, " \n\t");
if (a == NULL) return(-1);
printf("%d\n",strcasecmp(a,"hello"));
a = strtok(NULL, " \n\t");
if (a == NULL) return(-1);
printf("%d\n",strcasecmp(a,"world"));


return 0;
}

关于c - strcasecmp 不返回零,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36661411/

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