单项选择题

有以下程序
main()
char s[ ]="159",*p;
p=s;
printf("%c",*p++);printf("%c",*p++);程序运行后的输出结果是______。

A.15
B.16
C.12
D.59