单项选择题
有以下程序段 typedef struct node{int data;struct node * next;} * NODE; NODE p; 以下叙述中正确的是【 】。
A.p是指向structnode结构变量的指针的指针
B.NODEp;语句出错
C.p是指向structnode结构变量的指针
D.p是structnode结构变量
点击查看答案&解析
<上一题
目录
下一题>
热门
试题
单项选择题
有以下程序:main(){char s[]= 159 ,*p;p=s;printf( %c ,*p++);printf( %c ,*p++);}程序运行后的输出结果是【 】。
A.15
B.16
C.12
D.59
点击查看答案&解析
单项选择题
有定义语句int b;char c[10];,则正确的输入语句是【 】。
A.scallf("%d%s",&b,&c);
B.scallf("%d %s",&b,c);
C.scanf("%d %s",b,c)
D.scanf("%d%s",b,&c);
点击查看答案&解析
相关试题
有以下程序void f( int y,int *x)...
以下程序运行后的输出结果是【 】。main(...
函数fun的功能是计算Xndouble fun(double...
以下程序的功能是调用函数fun计算:m=1-...
设有以下定义stuct ss{ int info; st...