有以下程序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
正确答案是A