C语言判断文件结尾实例 C语言单字符IO实例 C语言文件实例 C语言判断文件结尾实例 /* echo_eof.c -- repeats input to end of file */ #include <stdio.h> int main(void) { int ch; while ((ch = getchar()) != EOF) putchar(ch); return 0; } C语言单字符IO实例 C语言文件实例