单项选择题

有以下程序
main()
char str[][10]="China","Beijing",*p=str;
printf("%s\n",p+10);

程序运行后的输出结果是

A.China
B.Beijing
C.ng
D.ing