• 2022-06-16
    以下对结构体变量stu成员age的非法引用是( )。 struct
    student {
    int num;
    int age; }; struct
    student stu,*p=&stu;
    A: stu.age
    B: (*p).age
    C: student.age
    D: p->age