下面的程序执行后,文件test.txt中的内容是 ( ) # include<stdio.h> void fun(char*<fname,char * st) { FILE*myf;int i; myf=fopen(fname,"w"); for(i=0;i<strlen(st);i+ +) fputc(st[i],myf); fclose (myf); } main( ) { fun("test","new word"); fun("test","hello"); }
A.hello
B.new worldhello,
C.new world
D.hello,rld
第1题:
下面的程序执行后,文件test.t中内容是______。 #include<stdio.h> void fun(char *fname,char *st) {FILE*myf; int i; myf=fopen(fname,"W"); for(i=0;i<strlen(st);i++)foutc(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,rid
第2题:
下面的程序执行后,文件test.t中内容是______。 #include<stdio.h> void fun(char *fname,char*st) {FILE*myf,int i; myf=fopen(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
第3题:
【单选题】下面的程序执行后,文件testt.t中的内容是()。 #include <stdio.h> void fun(char *fname.,char *st) { FILE *myf; int i; myf=fopen(fname,“w” ); for(i=0;i<strlen(st); i++)fputc(st[i],myf);="" fclose(myf);="" } main() { fun(“test”,“new world”; fun(“test”,“hello,”0;) }
A.hello
B.new worldhello
C.new world
D.hello,rld
第4题:
下面的程序执行后,文件test.t中内容是______。 #include<stdio.h> void fun(clar *fname,char *st) { FILE*myf;int i; myf=fopen(fname,"w"); for(i=0;i<stden(st);i++)fputc(st[i],myf); fclose(myf); } main() {fun("test.t","new world"); fur("test.t","hello,";}
A.hello,
B.new worldhello
C.new world
D.hello,rld
第5题:
下面的程序执行后,文件test.t中的内容是 ()。 #include <stdio.h> void fun(char *fname,char *st) {FILE *myf;int i; myf=fopen(fname,"w"); for(i=0;i<strlen(st);i++) fputc(st[i],myf); fclose(myf); } int main(void) { fun("test.t","new world"); fun("test.t","hello,"); return 0; }
A.hello,
B.new worldhello,
C.new world
D.hello,rld