若有如下定义:
struct student{
int num;
}int age; stu[3]={{1001,20},{1002,19},{1003,21}}, *p=stu;则下列表达式中,值为1002的是
(*++p).num
(*p).num
p++->num
(p++)->age
发表评论