已知下图,如果要使指针p指向data中的成员a,正确的赋值语句是()
A:p=(structsk*)&data.a;
B:p=(structsk*)data.a;
C:p=&data.a;
D:*p=data.a;
出自:计算机科学