( 40 )有以下程序
#include <stdio.h>
main ()
{ FILE *fp;char str[10];
fp=fopen ( " myfile.dat " , " w " ) ;
fputs ( " abc " ,fp ) ;fclose ( fp ) ;
fpfopen ( " myfile.dat:, " a+ " ) ;
fprintf ( fp, " %d " ,28 ) ;
rewind ( fp ) ;
fscanf ( fp, " %s " ,str ) ; puts ( str ) ;
fclose ( fp ) ;
}
程序运行后的输出结果是
A ) abc
B ) 28c
C ) abc28
D )因类型不一致而出错
第1题:
有以下程序 #include<stdio.h> void WriteStr(char*fn,char*str) { FILE*fp; fp=fopen(fn,"w");fputs(str,fp);fclose(fp); } main() { writeStr("t1.dat","start"); WriteStr("t1.dat","end"); } 程序运行后,文件t1.dat中的内容是
A.start
B.end
C.startend
D.endrt
第2题:
有以下程序:
#include<stdio.1l>
void WriteStr(char*fn.char*str)
{ FILE*fp;
fp=fopen(fn,"w");fputs(str,fp);fclose(fp);}
main
{ WriteStr("tl.dat","start");
WriteStr("t1.dat","end");)
程序运行后,文件t1.dat中的内容是( )。
A. start
B.end
C.startend
D.endrt
第3题:
有以下程序: #include void WriteStr(char *fn,char*str) { FILE*fp; fp=fopen(fn,"w");fputs(str,fp);fclose(fp); main() { WriteStr("t1.dat","start"); WriteStr("t1.dat","end"); } 程序运行后,文件t1.dat中的内容是( )。
A.start
B.end
C.startend
D.endrt
第4题:
有以下程序 #include<stdio.h> void WriteStr(char*fn,char*str) {FILE*fp; fp=fopen(fn"w");fputs(str,fp);fclose(fp); } main() { WriteStr("t1.dat"start"); WriteStr("t1,dat","end"); } 程序运行后,文件t1.dat中的内容是 ______。
A.start
B.end
C.startend
D.endrt
第5题:
有以下程序
#inculde <stdio.h>
main()
{ FILE*Fp;char str[10];
Fp=Fopen(“myFile.dat”,”W”);
Fputs(“aBc”,Fp);Fclose(Fp);
Fp=Fopen(“myFile.dat”,”a+”);
FprintFF(Fp,”%d”,28);
reWind(Fp);
FscanF(Fp,”%s”,str);puts(str);
Fclose(Fp);
}
程序运行后的输出结果是
A.aBc
B.28c
C.aBc28
D.因类型不一致而出错