单项选择题

有以下程序
point(char*p)p+=3;
main()
char b[4]='a','b','c','d',*p=b;
point(p);printf("%c\n",*p);

程序运行后的输出结果是

A.a
B.b
C.c
D.d