单项选择题

设有如下定义
struct sk
{int a;
float b;
}data,*p;
若有p=&data;
则对data中的成员a的正确引用是______

A.(*p).data.a
B.(*p).a
C.p->data.a
D.data.a