Reading <<The C programming luange>>,a pragram
#include <stdio.h>
main()
{
int c;
while((c=getchar())!=EOF)
{
putchar(c);
}
}
1. EOF means end of file.
2 .Ctrl+z can end the loop.
3. EOF is an integer, so variable c must be int (char is not enough to hold EOF)
4. the value EOF is -1(VC6.0), but if you input -1,getchar() first get -,then second time get 1
本文介绍了一个简单的C语言程序,该程序用于从标准输入读取字符直到文件结束(EOF),并将其输出到标准输出。文章解释了如何使用Ctrl+Z来模拟文件结束,并强调了变量类型必须为整型以便能正确处理EOF。

858

被折叠的 条评论
为什么被折叠?



