Using pointers to call a function is called as
-
call by value
-
call by reference
-
call by address
-
All the Above
B
Correct answer
Explanation
Using pointers to pass arguments to a function allows the function to access and modify the original variables through their memory addresses. This technique is called call by reference. Call by value creates a copy, and call by address is not standard terminology - call by reference and call by address mean essentially the same thing.