What is the concept used by this function definition ?
void divideByfour(double& x) { x = x/4; }
a call by pointer
a call by value
a call by reference
a call by assignment