C++ Friend Question:

Explain advantages of using friend classes?

C++ Friend Interview Question
C++ Friend Interview Question

Answer:

A friend function has the following advantages:

- Provides additional functionality which is kept outside the class.
- Provides functions that need data which is not normally used by the class.
- Allows sharing private class information by a non member function.


Previous QuestionNext Question
What are friend classes?Explain the characteristics of friend functions?