下列程序的输出结果是()。
#include<stdio.h>
main
{ int a=3,b=2,c=1;
if(a<b)
if(b<0)c=0;
else c++:
printf("%d\n",c);
}
A.2
B.0
C.1
D.不确定的值
请帮忙给出正确答案和分析,谢谢!