设有如下定义:struct sk {int a; float b; }data; int *p; 若要使p指向data中的a域,正确的赋值语句是(   )。(2分)
Ap=&a;
Bp=data.a;
Cp=&data.a;
D*p=data.a
出自:中北大学C语言程序设计