Inheritance Part 2: Types of Inheritance

Types of inheritance: Types of inheritance are 1. Single Inheritance If a class derived from a single base class, it is called as single Inheritance. Ex: #include<iostream.h> #include<conio.h> class student { private: int regno; cha name[20]; public: viod getdata() { cin>>regno>>name; ...