单项选择题

以下程序的输出结果是( )。
#include<stdio.h>
main()
int a=1,b=3;
if((++a<0)&&!(b--<=0))
printf("%d,%d\n",a,b);
else
printf("%d,%d\n",b,

A.;A) 2,2B) 1,3C) 3,2D)