Multiple choice technology programming languages

Using pointers to call a function is called as

  1. call by value

  2. call by reference

  3. call by address

  4. All the Above

Reveal answer Fill a bubble to check yourself
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.