单项选择题

以下程序的输出结果是( )。
main()

int a=-1,b=4,k;
k=(++a<0)&&!(b--<=0);
printf("%d%d%d\n"m,k,a,b);

A.104
B.103
C.003
D.004