C 程序在不同编译器上给出不同的输出

发布于 2024-10-19 07:44:00 字数 371 浏览 2 评论 0原文

我运行了一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

扛刀软妹 2024-10-26 07:44:00

您不能依赖函数参数的副作用的执行顺序。在这种情况下,两个编译器以不同的顺序执行副作用,产生不同的结果。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文