题目 / 答案提交正确答案
以下对结构体变量stul中成员age的非法引用是()。 struct student {int age; int num; }stul,*p; p=&stul;
A.stul.age
B.student.age
C.p->age
D.(*p).age
正确答案:B
关键字 浏览量:次
上一篇:如有short int a,b,若要通过a=a&b使a的低8位置0,高8位不变,则b应该是()。
下一篇:下面程序的运行结果是()。 #include <stdio.h> union data { int i; c
相关问题