C 程序在不同编译器上给出不同的输出
我运行了一个 C 程序,并在不同的 C 编译器上得到了不同的输出。下面是 我的程序
void main()
{
int i=5;
printf("%d%d%d%d%d",i++,i--,++i,--i,i);
}
在 boarnland c++ 编译器 o/p 上是
45545
和在 gcc 上
45555
它真的依赖于编译器还是依赖于操作系统?
函数调用中的参数从左到右压入堆栈。评估是通过从堆栈中弹出来的。并且评估是从右到左,因此是结果。
I ran a C program and got different output on different C compilers. Below is
my program
void main()
{
int i=5;
printf("%d%d%d%d%d",i++,i--,++i,--i,i);
}
ON boarnland c++ complier o/p is
45545
and on gcc its
45555
is it really compiler dependent or its OS dependent?
The arguments in a function call are pushed into the stack from left to right. The evaluation is by popping out from the stack. and the evaluation is from right to left, hence the result.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不能依赖函数参数的副作用的执行顺序。在这种情况下,两个编译器以不同的顺序执行副作用,产生不同的结果。
You cannot rely on the order of execution of side effects to arguments to a function. In this case the 2 compilers are executing the side effects in a different order, producing different results.