下面的程序执行后,文件test.t中内容是 ______。 #include<stdio.h> void fun(char * fName,char * st) {FILE * myf; int i; myf=fopm(fname,'w'); for(i=0;i<strlen(st);i++)fputc(st[i],myf); fclose(myf); } main(){fun('test.t','new world');fun('test.t','hello,');}
A.hello,
B.new worldhello
C.new world
D.hello.rld
A.t中内容是
B.h>
C.t','new
D.t','hello,');}
A.hello,
B.new
E.new
【参考答案】
A
解析:C语言中文件有文本文件与二进制文件,对文件的使用前必须先打开,打开方式有只读、写入、读写等方式。