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
Passing pointers to functions allows the function to access and modify the original variables directly, mimicking call by reference behavior. While C++ introduces actual reference variables, passing pointers is traditionally called call by reference or call by address in C-like languages.