MENU
Question -

What is the difference between the members in private visibility mode and the members in protected visibility mode inside a class ? Also, give a suitable C++ code to illustrate both. 



Answer -

Private:
This type of member can only be accessed by code in the same class.    [1]
Protected:
This type of member can only be accessed by code in the same class, or in a derived class. [1]

//C++ code : class Me
{
public :
int a, b;
protected :
int c, d;  //protected Member
private :
int e, f;  //Private Member
}

Comment(S)

Show all Coment

Leave a Comment

Free - Previous Years Question Papers
Any questions? Ask us!
×