Accessing private and protected members
How can we access protected and private members of a class in C++?
- 5180 Views
- 1 Answers
1 Answers
-
-
- 21 Jul
- 0 Comment
-
- Difference between class and struct?
- Interview questions for C++ language
- What are the basic concepts of oops in C++?
- How many times will this loop execute?
- Is Python better than C++? Explain your answer
- What are the five basic elements of a C++ program?
- Early bindingand Late binding in C++
- Which is the best software for C++ programming?
- How can I practice the questions of C Plus Plus Programming? Where to find study material?
- Where to find internship for C plus plus ?
Practice Mock Test
c plus plus programming
you can access the private members within the class only. private members are hidden from the other classes. and Protected members are only accessible by that class as well as its subclasses only. and public members are accessible by all the classes.