InterviewSolution
Saved Bookmarks
| 1. |
What is a friend function? |
|
Answer» A function which is not a member of the class but still can access all the member of the class is called so. To make it happen we need to declare within the required class following the keyword ‘friend’. |
|