问题详情
有以下程序main() { int m=14,n=24; printf("%d,%d",m++,++n); printf("%d,%d ",n++,++m); }程序运行后的输出结果是A.15252616 B.14252515 C.14252516 D.14252615