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