Question: The print ( X* ) function defined below is not able to do its job because m and n are in the private section of

The print ( X* ) function defined below is not able to do its job because m and n are in the private section of the class X? How can this situation be fixed with a single additional declaration in the definition of class X? (You are not allowed to change the access control property for any of the members of X.)

class X { int m; int n; public: X( int mm, int nn ) { m = mm; n = nn; } }; void print( X* ptr ) { cout << ptr->m << " " << ptr->n << endl; }

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 Databases Questions!