k&R,getchar如何读取EOF

发布于 2024-10-28 19:21:28 字数 306 浏览 3 评论 0原文

在阅读 k&ri 时遇到以下示例

#include<stdio.h>
int main()
{
int c;
while((c=getchar())!=EOF)
{
    putchar(c);
}
printf("hello");
}

疑问 1:当我输入字符 ctrl+z(EOF on my sys) 时。 o/p 你好
但是当我输入像 abcdef^Zghijk
这样的字符串时 o/p 是 abcdef->(包括箭头)并等待用户输入 i/p 而不是终止循环并打印 hello..

while reading from k&r i came across the following example

#include<stdio.h>
int main()
{
int c;
while((c=getchar())!=EOF)
{
    putchar(c);
}
printf("hello");
}

doubt 1:when i am typing the character ctrl+z(EOF on my sys) . o/p is hello
but when i am typing the string of characters like abcdef^Zghijk
o/p is abcdef->(including the arrow) and waiting for user to enter i/p instead of terminating loop and print hello..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

懵少女 2024-11-04 19:21:28

ctrl+z 不是 EOF,它只是告诉终端关闭流的一种方法。

在Windows系统上,您需要将ctrl+z写入该行的第一个字符,否则终端将其视为普通字符。

ctrl+z is not EOF, it is just a way to tell your terminal to close the stream.

On Windows systems you need to write the ctrl+z as the first character of the line, otherwise the terminal considers it to be an ordinary character.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文