Question: For the following C + + code, which of the following can access the privateMember of MyClass? class MyClass { public: int publicMember; private: int

For the following C++ code, which of the following can access the privateMember of MyClass?
class MyClass {
public:
int publicMember;
private:
int privateMember;
};
Question 13 options:
Both A and C
Only member function of derived class
Any function or class
No external access

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!