How to achieve multi level inheritance
Let’s begin with a simple example to achieve multi-level inheritance.
Example to achieve multi-level inheritance in C++
C++ program to print a hollow square or rectangle star pattern by achieving the multi-level inheritance.
Level 0 = class a
Level 1 = class b: public a (Class b is a child of class a)
Level 2 = class c: public b (Class c is a child of class b)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | #include<iostream> using namespace std; class a { protected: int i,j; }; class b:public a { public: int n; }; class c:public b { public : int out() { cout<<"enter number"; cin>>n; for(i=1;i<=n;i++) { for(j =1;j<=n;j++) { if(i==1||i==n||j==1||j==n) { cout<<"*"; } else { cout<<" "; } } cout<<" \n"; } } }; int main() { c obj; obj.out(); } |
Output
Topic Covered
How to achieve multi-level inheritance?