So this is my code and I know the output for call by value is
Here is f
main: z = 15
What would it be if a language used call by name instead of call by value?
int f() {
cout << "Here is f" << endl;
return 5;
}
int g(int a) {
int x = a;
int y = 2 * a;
return x + y;
}
int main() {
int z = g(f());
cout << "main: z = " << z << endl;
}
You could do it like this:
The "body" of
f()
is evaluated twice, because it is used twice ing()
.