【多选题】以下程序由终端输入一个文件名,然后把从终端键盘输入的字符依次存放到该文件中,用#作为结束输入的标志。请填空。 #include "stdio.h" int main() { FILE * fp; char ch,fname[10]; printf("lnput the name of file\n"); gets(fname); if((fp= [填空(1)] )==NULL) { printf(...
【简答题】从键盘输入一个字符串,把它输出到磁盘文件 f1.dat 中 ( 用字符 ‘ # ’ 作为结束输入的标志)。 #include int main() { FILE *fp ; char ch; if ((fp= (1) )==NULL) { printf("connot open\n"); exit(0); } while ((ch=getchar())!='#') fputc( (2)...
【简答题】下列程序由终端输入一个文件名,然后把从终端键盘输入的字符依次放到该文件中,用 # 作为结束输入的标志。请填空 #include int main() { FILE *fp; char ch,fname[10]; printf("lnput the name of file\n"); gets(fname); if((fp= )==NULL){ printf("Cannot open\n"); ex...
【单选题】fputc(ch,fp) 把一个字符ch写到fp所指示的磁盘文件中,若写文件失败则函数的返回值为( )。
【单选题】Usually, the consignor is the sane party as the ( ).
【简答题】以下程序由终端输入一个文件名,然后把从终端键盘输入的字符依次存放到该文件中,用 # 作为结束输入的标志。请填空 。 #include void main() { FILE * fp; char ch,fname[10]; printf("lnput the name of file\n"); gets(fname); if((fp= )==NULL) { printf("Cannot open...
【简答题】 从键盘输入一个字符串,把它输出到磁盘文件f1.dat中(用字符‘#’作为结束输入的标志)。 # include main() { FILE *fp ; char ch,fname[10]; printf("文件名:"); gets(fname); if ((fp= )==NULL) { printf("connot open\n"); exit(0); } while ((ch=getcha...
【单选题】The organization was founded (建立) for the ________ of poor children .
【简答题】以下程序由终端输入一个文件名,然后把从终端键盘输入的字符依次存放到该文件中,用“#”作为结束输入的标志,请填空。#include main(){ FILE *fp; char ch,fname[10]; printf("Input the name of file\n"); gets(fname); if((fp=fopen(fname,"w"))==NULL) { printf ("Cannot...