• 2022-06-12
    设有如下语句: struct student { int num; int age; }; struct student stu[3]={{101,18},{102,21},{103,19}}; struct student *p=stu; 则下面表达式的值为102的是( )
    A: (p++)->num
    B: (p++)->age
    C: (*p).age
    D: (*++p).num