函数的调用方式:自右向左

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了函数的调用方式:自右向左相关的知识,希望对你有一定的参考价值。

#include<stdio.h>

#include<math.h>
//函数的调用方式:自右向左
int main()
{
int f(int a, int b);
int i = 2, p;
p = f(i, ++i); //关键点
printf("%d\\n", p);
while (1);
return 0;
}

int f(int a, int b)
{
printf("%d\\n", a);
printf("%d\\n", b);
int c;
if (a > b)
c = 1;
else if (a == b)
c = 0;
else
c = -1;
return c;
}

 

 

结果显示:

技术分享

 























以上是关于函数的调用方式:自右向左的主要内容,如果未能解决你的问题,请参考以下文章

C语言 函数调用模型

C语言 函数调用模型

cadel fastcall stdcall

51单片机数码管字符H自右向左移动

C语言中结合性自右向左怎么理解

函数调用方式__stdcall__cdel