有以下程序: #include<stdio.h> main() { FILE*f; f=fopen("filea.txt","w"); fprintf(f,"abc"): fclose(f): } 若文本文件filea.txt中

admin2019-06-12  23

问题 有以下程序:
  #include<stdio.h>
  main()
  {
  FILE*f;
  f=fopen("filea.txt","w");
  fprintf(f,"abc"):
  fclose(f):
}
若文本文件filea.txt中原有内容为:
hello,则运行以上程序后,文件filea.txt中的内容为(    )。

选项 A、helloabc
B、abelo
C、abc
D、abchello

答案C

解析 fopen(”filea.txt”,”w”);表示以写的形式打开filea.txt,fprintf(f,”abc”);是先将文件清空再写入。所以本题是将abc写入filea.txt。
转载请注明原文地址:https://kaotiyun.com/show/YjRp777K
0

最新回复(0)