首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
有以下程序: #include<stdio.h> main() {FILE*fp;int a[10]={1,2,3},i,n; fp=fopen("d1.dat","w"); for(i=0;i<3;i++) fprintf(fp,"%d",a[i]);
有以下程序: #include<stdio.h> main() {FILE*fp;int a[10]={1,2,3},i,n; fp=fopen("d1.dat","w"); for(i=0;i<3;i++) fprintf(fp,"%d",a[i]);
admin
2020-11-23
49
问题
有以下程序:
#include<stdio.h>
main()
{FILE*fp;int a[10]={1,2,3},i,n;
fp=fopen("d1.dat","w");
for(i=0;i<3;i++)
fprintf(fp,"%d",a
);
fprintf(fp,"\n");
fclose(fp);
fp=fopen("d1.dat","r");
fscanf(fp,"%d",&n);
fclose(fp);
printf("%d\n",n);
}
程序的运行结果是( )。
选项
A、321
B、12300
C、1
D、123
答案
D
解析
程序首先将数组a[10]中的元素1、2、3分别写入了文件d1.dat文件中,然后又将d1.dat文件中的数据123整体写到变量n的空间中,所以打印n时输出的数据为123。
转载请注明原文地址:https://kaotiyun.com/show/983p777K
本试题收录于:
二级C语言题库NCRE全国计算机二级分类
0
二级C语言
NCRE全国计算机二级
相关试题推荐
对于if(表达式)语句,以下说法正确的是()。
有以下程序段:intm=33,n=66;m=m^n;n=n^m;m=m^n;执行上述语句后,m和n的值分别是()。
有以下程序#include<stdio.h>voidswap(int*a,int*b){intt,*tp;t=*a;*a=*b;*b=t;tp=a;a=b;b=tp;prinff("%d,%d,",*a,*b);}main(){in
下列叙述中正确的是()。
有以下程序:#include<stdio.h>main(){FILE*f:f=fopen("filea.txt","w");fprintf(f,"abc");fclose
下列叙述中正确的是()。
学生选课成绩表的关系模式是SC(S#,C#,G),其中S#为学号,C#为课程号,G为成绩,关系T=πS#,C#(SC)/C表示()。
下列叙述中正确的是()。
下列数据流图(DFD)构造规则中正确的是()。
随机试题
Wheredocarsgettheirenergyfrom?Formostcars,theanswerispetrol.【C1】________somecarsuseelectricity.Thesecars
引起呼吸道平滑肌、子宫平滑肌和大多数胃肠平滑肌收缩:具有很强的排钠利尿、舒张血管、降低血压的作用:
关于涡流的叙述,错误的是
不适合用作牙周病影像学检查的方法是
急性腹泻大便初为水样,后为脓血便,应首先考虑细菌感染。()
以下事项中,承包商能够提出利润索赔的是( )。
Accordingtothepassage,whichofthefollowingistree?The"insider"(paragraph5,line1)ismostprobably.______.
设A和B为任意两不相容事件,且P(A)P(B)>0,则必有()
Mr.SmithbelievedthathispromotioncameWhatwillMr.Smithdotogetmorecustomers?
Linguistically,comparedwiththewritingsofMarkTwain,HenryJames’sfictionisnotedforhis______.
最新回复
(
0
)