Science, asked by esha69462, 5 months ago

# include <iostream > using namespace std; class mybase { int a, b; public : int c; void setab (int i, int j) { a = i; b = j; } void getab (int &i, int &j) { i = a; j = b; } }; class derived1 : public mybase { // ... }; class derived2 : private mybase { }; int main () { derived1 o1; derived2 o2; int i, j; // ... } within main(), which of the following statements are legal? a. o1. getab (i, j); b. o2. getab (i, j); c. o1.c = 10; d. o2.c = 10; complete this problem with passing parameter from derived to base via constructor also create another class which inherits derived 1 and derived 2 class use protected member and variable in derived 1 and 2 which can access from child class but from other class. ​

Answers

Answered by Immanuel7
1

Explanation:

The topics covered in this chapter include base class access control and the ... #include <iostream> using ... using namespace std; class mybase { int a, b; public: int c; void setab(int i, int j) { a = i; b =j; }.

Similar questions