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