本文介绍了如何评估?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 int i = 0; printf("%d%d%d%d",++ i,++ i,++ i,++ i) ; 输出: 4 3 2 1 为什么不是 1 2 3 4 int i=0; printf("%d %d %d %d",++i,++i,++i,++i); output:4 3 2 1 why is not1 2 3 4推荐答案 这有帮助吗? http://www.eskimo.com /〜scs/C-faq/s3.html Does this help? http://www.eskimo.com/~scs/C-faq/s3.html [laotseu @ localhost dev] [laotseu@localhost dev] 这篇关于如何评估?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 10-23 10:08