本文介绍了如何后递增和放大器; pre增量都在函数的参数评估?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

可能重复:结果
  结果
  

在这里,我想知道为什么这个输出来?
任何一个可以解释我在所有适当的方式

here i want to know why this output comes??Any one Can Explain me All in proper manner

#include<stdio.h>
   int main() {
   int a=5;
   printf("%d %d %d",a++,a++,++a);
   return 0;
   } 

该程序的输出是像

在LINUX
 7 6 8

In LINUX 7 6 8

推荐答案

这是不确定的 - 副作用,只在guarantied的。

It's undefined - side effects are only guarantied to be completed at sequence points.

这篇关于如何后递增和放大器; pre增量都在函数的参数评估?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-26 23:45