注意:此页面搜索的是所有试题
若有以下定义和语句:
struct student
{int age;int num;};
struct student stu[3]={{1001,20},{1002,19},{1003,21}};
main()
{struct student *p;
p=stu;...
}
则以下不正确的引用是( )。
A)(p++)->num B)p++
C)(*p).num D)p=&stu.age

参考答案