单项选择题

下列程序的运行结果是( )。
#include <stdio.h>
main()
int a=2,b=3,c=4;
if(a<b)
if(b<0) c=0;
else c+=1;
printf("%d\n", c);

A.2
B.3
C.5
D.4