选择题1.0分
C试卷
以下程序输出结果是

A7

B6

C5

D4
main()
{ int m=5;
if(m++>5) printf("%d\n",m);
esle printf("%d\n",m- -);    }

正确答案及相关解析

正确答案

B