gpt4 book ai didi

检查 C 字符串中的 "end of line"

转载 作者:太空宇宙 更新时间:2023-11-04 00:19:02 25 4
gpt4 key购买 nike

我想从用户那里获取最大长度为 30 个字符的字符串作为输入,并检查它是否包含行尾。

这是我到目前为止尝试写的内容:

int main(void) {
int i;
char* command = (char*)calloc(31, sizeof(char));
while (0 < 1) {
scanf("%s", command);
for (i = 0; i <= strlen(command); ++i) {
if (command[i] == '\n')
printf("here");
}
if (strcmp(command, "quit") == 0)
break;
}

想法是检查用户作为输入给出的命令是否“合法”——即长度 < 31。当我运行这段代码时,无论输入的长度如何,它都不会打印“此处”。

最佳答案

这是因为 scanf() 不包括换行符,它认为它是空格并使用空格来分隔它转换的值。只需使用 strlen() 的返回值。

关于检查 C 字符串中的 "end of line",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10901195/

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