单项选择题

下列程序的输出结果是()。
#include<stdio.h>
void main()
int a=0,b=1,c=2;
if(++a>0||++b>0)
++C;
printf("%d,%d,%d",a,b,c);

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