以下对结构体变量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