C++ Programming Question: Download C++ Programming PDF

What is friend function in C++?

Tweet Share WhatsApp

Answer:

As the name suggests, the function acts as a friend to a class. As a friend of a class, it can access its private and protected members. A friend function is not a member of the class. But it must be listed in the class definition.

Download C++ Programming PDF Read All 120 C++ Programming Questions
Previous QuestionNext Question
What is a C++ class?Which recursive sorting technique always makes recursive calls to sort subarrays that are about half size of the original array?