若函数声明为 int f(int &x){ x+=3; return x; } ,则对声明的变量 int a=3 ,下面哪个调用能够改变 a 的值( )。
f(&a) ;
f(*a) ;
f(a) ;
f(a-3) ;