C语言——通过函数改变外部参数的值 //通过该函数使得外部值自增1 void f1(int* x){ (*x)++; //特别注意:*x 是取值需要加括号再自增 } int main() { int a = 1; f1(&a); printf("%d",a); return 0; }