题目 / 答案提交正确答案
以下对结构体变量s 中成员age的合法法引用是()。 #include<string.h> struct student {int age; int num; } s,*p; p=&s;
A.student.s.age
B.student.age
C.p->age
D.s->age
正确答案:C
关键字 浏览量:次
上一篇:C语言规定结构体变量系统分配给它的存储空间是()。
下一篇:用宏替代计算多项式4*x*x+3*x+2之值的函数f,正确的宏定义是()。
相关问题
【智慧树】以下对结构体变量stul中成员age的非法引用是()。 struct student {int age; int num