假定在当前盘当前目录下有2个文本文件,其名称和内容如下:
文件名a1.txta2.txt
内容121314#252627#
写出下列程序运行后的输出。
#include
main()
{FILE*fp;
voidfc();
if((fp=fopen("a1.txt","r"))==NULL)
{printf("Cannotopenfile!\n");exit(1);}
else{fc(fp);fclose(fp);}
if((fp=fopen("a2.txt","r"))==NULL)
{prinff("Cannotopenfile!\n");exit(1);}
else{fc(fp);fclose(fp);}
}
voidfc(FILE*fpl)
{charc;
while((c=fgetc(fpl))!='#')putchar(c);
}
121314252627;fc函数中while循环的作用是输出参数文件的内容。