有以下程序
struct S(int a; int b;};
main()
{
struct S a,*p=&a;
a.a=99;
printf("%d\n",___);
}
程序要求输出结构体中成员a的数据,以下不能填入横线处的内容是( )
a.a
*p.a
р->а
(*p).a