单项选择题
以下程序的输出结果是( )。
#include<stdio.h>
struct st
int x;int *y;*p;
int dt[4]=10,20,30,40;
struct st aa[4]=[50,&dt[0],60,&dt[0],60,&dt[0],60,&dt[0]
main()
p=aa;printf("%d\n",++(p->x));
A.10
B.11
C.51
D.60
点击查看答案&解析
<上一题
目录
下一题>
热门
试题
单项选择题
栈和队列的共同特点是( )。
A.都是先进先出
B.都是先进后出
C.只允许在端点处插入和删除元素
D.没有共同点
点击查看答案&解析
单项选择题
以下选项中,不能作为合法常量的是( )。
A.1.234e04
B.1.234e0.4
C.1.234e+4
D.1.234e0
点击查看答案&解析
相关试题
有如下程序: #include<stdio.h> mai...
请阅读以下程序: #include<stdio.h>...
有如下程序: main() char ch[2][...
下列程序执行后的输出结果是( )。 void...
阅读下列程序,当运行函数时,输入asd af...