填空题
以下程序的功能是从名为“filea.dat”的文本文件中逐个读入字符并显示在屏幕上,请填空。 #include <stdio.h> main() FILE *fp; char ch; fp=fopen(___(1)___); ch=fgetc(fp); while(___(2)___ (fp)) putchar(ch);ch=fgetc(fp); putchar(’\n’);fclose(fp);