题目内容
以下程序由终端键盘输入一个文件名,然后把终端键盘输入的字符依次存放到该文件中,用#号作为结束输入标志。请填空#include #include main() {FIlE*fp; char ch, fname[10]; printf("Enter the name of file\n");gets(fname); if((fp=_____)==NULL){ printf("Openerror\n"); exit(0);} printf("Enter data:\n"); while((ch=getchar())!='#')fputc(_____,fp); fclose(fp); }
查看答案
搜索结果不匹配?点我反馈
更多问题