用以下程序把从键盘输入的字符存放到一个文件中,用字符#作为结束符,请按题意要求填空完善程序。 #include<stdio.h> main() { FILE*fp; char ch,fname[10]; printf(

admin2009-02-15  27

问题 用以下程序把从键盘输入的字符存放到一个文件中,用字符#作为结束符,请按题意要求填空完善程序。
   #include<stdio.h>
   main()
   { FILE*fp;
     char ch,fname[10];
     printf("Input the name of file\n");
     gets(fname);
     if(fp=fopen(【  】))==NULL)
     {printf("can’t open\n");
【  】;
     }
     while((ch=getchar())!=’#’)
     fputc(【  】);
     fclose(fp);
   }

选项

答案fname,"#" exit(0) ch,fp

解析
转载请注明原文地址:https://kaotiyun.com/show/qDXp777K
0

最新回复(0)