若函数声明为 int f(int &x){ x+=3; return x; } ,则对声明的变量 int a=3 ,下面哪个调用能够改 变 a 的值( )。 A. f(&a) ;B. f(*a) ;C. f(a) ;D. f(a-3) ; 正确答案:C