二级C语言第三套选择题(10)
发布时间:2021-06-08
发布时间:2021-06-08
fp=fopen("d1.dat","w");
for(i=0;i<3;i++) fprintf(fp,"%d",a[i]); fprintf(fp,"\n");
fclose(fp);
fp=fopen("d1.dat","r");
fscanf(fp,"%d",&n);
fclose(fp);
printf("%d\n",n);
}
程序的运行结果是
A)12300 B)123 C)1
(38)已知 int a=1,b=3则a^b的值为
A)3 B)1 C)2 D)4
(39)阅读下列程序,则运行结果为
#include "stdio.h"
fun()
{ static int x=5;
x++;
return x;}
main()
{ int i,x;
for(i=0;i<3;i++)
x=fun();
printf("%d\n",x);}
A)5 B)6 C)7 D)8
(40)有以下程序
#include <stdio.h> D)321
上一篇:初中数学单元教学设计策略及案例
下一篇:计算机工程与设计