有以下程序 #include<stdio.h> void WriteStr(char*fn,char*str) { FILE*fp; fp=fopen(fn,"w");fputs(str,fp);fclose(fp);

admin2013-02-23  30

问题 有以下程序    #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

解析 使用fputs函数输出字符串到文件时,将覆盖原文件中的内容。
转载请注明原文地址:https://kaotiyun.com/show/HUJp777K
0

随机试题
最新回复(0)