题目内容

What will the woman's new job be like?

A. There will be less community work.
B. There will be less policy work.
C. There will be more dealing with students.
D. There will be less dealing with students.

查看答案
更多问题

若变量都已正确说明,则以下程序段()。 #include<stdio.h> main() {int a=8; int b=6; printf(a>b?"&&&a=%d":"!!!b=%d",a,B); }

A. 输出为:&&&a=8
B. 输出为:!!!b=8
C. 输出为:&&&a=8 !!!b=6
D. 全部错误

有以下程序 #include<stdio.h> main() {FILE *fp;int i=20,j=30,k,n; fp=fopen("D1v.dat","w"); fprintf(fp,"%d\n",i);fprintf(fp,"%d\n",j); fclose(fp); fp=fopen("d1.dat","r"); fscanf(fp,"%d%d",&k,&n);printf("%d%d\n",k,n); fclose(fp); } 程序运行后的输出结果是()。

A. 20 30
B. 20 50
C. 30 50
D. 30 20

有以下程序: #include<stdio.h> void fun(char *c,intD){ *c=*c+1; d+=1; printf("%c,%c",*c,D;} main() { char a='F',b='f'; fun(&b,A); printf("%c,%c\n",a,B);} 程序的输出结果为()。

A. g,GF,g
B. g,FF,g
C. G,fF,G
D. f,gf,g

下列程序的输出结果是()。 #include<stdio.h> void fun(int*a,int*B){ int *k; k=a;a=b;b=k;} main() { int a=1,b=2,*x=&a,*y=&b; fun(x,y); printf("%d%d",a,B); }

A. 2 1
B. 1 2
C. 编译出错
D. 0 0

答案查题题库