几个初学问题
1.fff(float X){printf("%d\n",x*x);}
为什么是int类型
2.func((exp1,exp2),(exp3,exp4,exp5));
此函数含有的实参个数为什么是2个
3.#include<stdio.h>
int func(int a,int b)
{int c;
c=a+b;return c;
}
main()
{int x=6,y=7,z=8,r;
r=func((x--,y++,x+y),z--);
printf("%d\n",r)
}
输出的结果为什么是21