单项选择题

有以下程序
#include<stdio.h>
main()
int a=-2,b=0;
while(a++&&++b);
printf("%d,%dkn",a,b);

程序运行后输出结果是()。

A.1,2
B.0,3
C.1,3
D.0,2