大家好,我是新手,大家能帮我解释一下这个程序么,谢谢啦
#include <iostream> using namespace std;
int xyz(int a, int b)
{ int c;
c=a+b;
return c;
}
void main()
{ int x=6,y=7,z=8,r;
r=xyz((x--,y++,x+y),z--);//主要是这句不懂
cout<<r<<endl;
}
2013-03-13 22:19
2013-03-15 09:54
2013-03-15 11:32
2013-03-15 12:09
2013-04-05 22:02
2013-04-09 12:50
2013-04-13 12:20
2013-04-16 19:24
2013-04-24 13:03
2013-04-24 23:06