k&R,getchar如何读取EOF
在阅读 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.