单选题 下列程序的输出结果是______。
#include<stdio.h>
void main()
{int a=0,b=1,c=2;
if(++a>0||++b>0)++c;
pfintf("%d,%d,%d",a,b,c);
}
【正确答案】 C
【答案解析】