单项选择题

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

程序运行后的输出结果是

A) 1
B) 2
C) 3
D) 4