Jump to

v02-l1-callConcept2

What is the name of a function call for the following code ?

void someFunction(double& x) {
    // ...
}

// ... in main ...
double x=1;
someFunction(x);

???