C++ References Question:

What means pass by pointer?

Tweet Share WhatsApp

Answer:

The callee function receives a pointer to the variable. The value of the pointer in the caller function can then be modified. The advantages of this process are that the changes are passed back to the caller function and multiple variables can be changed.

Download C++ References PDF Read All 16 C++ References Questions
Previous QuestionNext Question
What means pass by reference?What is reference variable?