某结构型变量定义如下,对该结构型变量中成员的引用形式正确的是(  )
struct abc
{
    int s;
    char ch;
};
struct abc a1,*p;
p=&a1;
A、a1->s
B、p->ch
C、p.ch
D、*p.s