Friend deep meaning
Friend Deep Meaning : . a person that you know and like (not a member of your family), and who likes you मित्र, दोस्त (जो परिवार का सदस्य नहीं है) "in applicable in c++ also your question rise in how can : let be explain it we know C++ are object oriented program it deals with class and objects , class inside define a function is known as member function and which function define in other class and its another class is knows as friend function LETS IN PROGRAM IN FRIEND MEANING In the context of C++ programming, the keyword friend is used to declare a function or a class as a friend of another class. This concept is related to access control in object-oriented programming and allows the declared friend to access the private and protected members of the class it is declared as a friend of. Here's how it works: Friend Function: A friend function is a non-member function that is granted access to the private and protected members of a class. It is declared inside the class...