#include "stdio.h" void ff(int x,int y,int *z) { *z=x+y; } void main() { int z=7; ff(z+1,z++,&z);//把z的地址传进去 printf("%d\n",z);// 输出15 }