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