设有下面的定义:
struct st
{
int a;
float b;
}d;
int *p;
要使指向结构变量a中的a成员,正确的赋值语句是()。
*p=d.a;
p=&a;
p=d.a;
p=&d.a;