gpt4 book ai didi

C : How to stop the loop when getting the end of input from keyboard or file while using scanf one char at a time

转载 作者:太空宇宙 更新时间:2023-11-04 06:51:36 26 4
gpt4 key购买 nike

void main(void)
{
char character;

do {
scanf("%c", &character);
printf("%c", character);
} while (character != EOF);
}

我要逐个字符地处理输入,并且只允许使用 scanf()。但是,while 循环不会停止。由于我可能需要处理多行字符串的输入,所以不可能再添加一个条件:character != '\n'。有人可以帮我解决这个问题吗?谢谢!

最佳答案

您的期望不正确。当 scanf() 在匹配输入项或识别匹配失败之前遇到输入结束时,它返回 EOF。在任何情况下,它都不会修改与未匹配的输入项关联的数据值。

您忽略了 scanf 的返回值,这通常是一件危险的事情,而是测试 scanf 是否记录了 EOF与输入项关联的对象,在您的特定情况下,它绝不能这样做。

关于C : How to stop the loop when getting the end of input from keyboard or file while using scanf one char at a time,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50338219/

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