填空题

有以下程序:
void f(int y,int *x)
y=y+*x; *x=*x+y;
main()
int x=2,y=4;
f(y,&x);
printf("%d %d\n",x,y);
执行后输出结果是上 【11】

【参考答案】

8 4