以下对结构体变量stu1中成员age的非法引用是()。 struct student { char name[10]; i

分类: 19信息竞赛自组题01 发布时间: 2023-12-01 12:13 浏览量: 1

以下对结构体变量stu1中成员age的非法引用是()。 struct student { char name[10]; int age ; } stu1 ,*p; p=&stu1;

A.stu1.age

B.p->age

C.(*p).age

D.student.age

正确答案是D