What is the name of a function call for the following code ?
void someFunction(double& x) { // ... } // ... in main ... double x=1; someFunction(x);
a call by value
a call by reference
a call by assignment
a call by label