friend
The friend is an access modifier keyword used to grant an access to a class's private and protected properties.
Syntax
class kimberly
{
friend class bestie;
private:
/**/
protected:
/**/
}
The friend is an access modifier keyword used to grant an access to a class's private and protected properties.
class kimberly
{
friend class bestie;
private:
/**/
protected:
/**/
}