下面程序运行后的输出结果是
#include  
int main()
{
    int a=3,b=4,c=5,d=2;
    if(a>b)
    { 
         if(b>c)
         { 
             printf("%d",d++ +1);
         }
         else
         { 
             printf("%d",++d +1);
         }
   }
   printf("%d\n",d);
   return 0;
}

A、2
B、3
C、43
D、42