执行以下程序后, test.txt 文件的内容是 ( 若文件能正常打开 )
#include <stdio.h>
main()
{ FILE *fp;
char *s1="Fortran",*s2="Basic";
if((fp=fopen("test.txt","wb ” ))==NULL)
{ printf("Can't open test.txt file\n");exit(1);}
fwrite(s1,7,1,fp); /* 把从地址 s1 开始的 7 个字符写到 fp 所指文件中 */
fseek(fp,0L,SEEK_SET); /* 文件位置指针移到文件开头 */
fwrite(s2,5,1,fp);
fclose(fp);
}
A)Basican
B)BasicFortran
C)Basic
D)FortranBasic
第1题:
下面的程序执行后,文件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
第2题:
以下程序用来判断指定文件是否能正常打开,请填空。
include<stdio.h>
main()
{FILE*fp;
if(((fp=fopen("test.txt","r"))=【 】))
printf("未能打开文件!\n");
else
printf("文件打开成功!\n");
}
第3题:
当已存在一个test.txt文件时,执行函数fopen("test.txt","r+")的功能是()。
A.打开test.txt文件,覆盖原有的内容
B.打开test.txt文件,可以读取和写入新的内容
C.打开test.txt文件,只能写入数据,但不能读取数据
D.打开test.txt文件,只能读取原有内容,但不能写数据
第4题:
下面的程序执行后,文件test.txt中的内容是______。 #include<stdio.h> void fun(char *fname,char *st) { FILE*myf;int i; myf=fopen("test.txt","w"); for(i=0;i<strlen(st);i++) fputc(st[i],myf); fclose(myf); } main() { fun("test","new one"); fun("test","hello,"); }
A.hello,
B.new onehello,
C.new one
D.hello,ne
第5题:
执行以下程序后,test.txt文件的内容是(若文件能正常打开)______。 #include <stdio.h> main() { FILE *fp; char *s1="Fortran",*s2="Basic"; if((fp=fopen("test.txt","wb"))=NULL) { printf("Can't open test.txt file\n"); exit(1);} fwrite(s1,7,1,fp); /* 把从地址s1开始的7个字符写到fp所指文件中*/ f seek(fp, 0L,SEEK_SET);/*文件位置指针移到文件开头*/ fwrite(s2,5,1,fp); fclose(fp); }
A.Basican
B.BasicFortran
C.Basic
D.FortranBasic