gpt4 book ai didi

c - 我们如何终止这个 C 代码?

转载 作者:太空狗 更新时间:2023-10-29 15:55:23 24 4
gpt4 key购买 nike

此 C 代码来自 K&R。它一直在运行,即使我输入 -1。我在 fedora 17 中使用 eclipse。这段代码有什么问题?它将如何终止?即使是 CTRL+D 也无法结束它!

#include<stdio.h>
int main(void)
{
int c;

c = getchar();
while(c != EOF)
{
putchar(c);
c = getchar();
}

return 0;
}

最佳答案

It is running continuously, even when I type -1

在 Unix 上,您需要键入 Ctrl-D 来表示文件结束。


正如 Mooing Duck 指出的那样,this seems to be a bug in Eclipse .

关于c - 我们如何终止这个 C 代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14908507/

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