下面的程序执行后,文件test.t中的内容是( )。
#include<stdio.h>
void fun(char *fiame.,char *st)
{ FILE *myf; int i;
myf=fopen(Name,"w");
for(i=0;i<strlen(st);i++)fputc(st[i],myf);
felose(myf);
}
main()
{fun("test", "new world");fun("test","hello,");}
A.hello, B.new worldhello, C.new world D.hello,rld
答案不对?请尝试站内搜索