单项选择题

设有如下定义: struct sk { int n; float x;} data,*p; 若要使p指向data中的n域,正确的赋值语句是

A.p=&datn;
B.*p=datn;
C.p=(struct sk*)&datn;
D.p=(struct sk*)datn: