有下列程序:
fun(int X,int y){return(x+y);}
main()
{ int a=1,b=2,C=3,sum;
sum=fun((a++,b++,a+b),c++);
printf("%d\n",sum);
}
执行后的输出结果是( )。