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
When you pass pointers to a function, the function receives the address of the original variable. The function can access and modify the original data through that address. Call by value copies the actual parameter, call by address means passing pointers explicitly.