单选题 有以下程序:
void main()
char s[]="159",*p;
p=s;
printf("%c",*p++);printf("%c",*p++);

程序运行后输出的结果是( )。
A.15 B.16
C.12 D.59

【正确答案】 A
【答案解析】