问题详情
已知有结构体: struct sk { int a; float b; }data,*p; 若有p=&data,则对data的成员a的正确引用是()。
A.(*p).data.a
B.(*p).a;
C.p->data.a
D.p.data.a
请帮忙给出正确答案和分析,谢谢!