问答题

void f(int x,int y,int *px,int *py) {*px=x*y; *px=x-y; } main() {int a=10,b=20; f(a,b,&a,&b); printf("%d,%d\n",a,b); }

【参考答案】

200,-10