以下程序中用户由键盘输入一个文件名,然后输入一串字符(用#结束输入)存放到此文件中,形成文本文件,并将字符的个数写到文件的尾部,请填空。
#include
main()
{FTLE,*fp;
charch,fname[32];intcount=0;
prinff("Inputthefilename:");seanf("%s",fname);
if((fp=fopen(____"W+"))==NULL)
{"prinff("Can'topenfile:%s\n",fname);exit(0);}
prinff("Enterdata;\n");
while((ch=getchar())!='#'){fputc(ch,fp);count++;}
fprintf(____,"\n%d\n",count);
fclose(fp);
}
fllame; fp