Loading practice questions
How to access a private member function of a class?
Correct Answer: D — Using address of member function
Explanation:
Even the private member functions can be called outside the class. This is possible if address of the function is known. We can use the address to call the function outside the class.