问题详情
有定义如下:struct sk{ int a;float b;}data,*p;如果p=&data;则对于结构变量data的成员a的正确引用时()A)(*).data.a B)(*p).aC)p->data.a D)p.data.a