In C++, inheritance is a process in which one object acquires all the properties and behaviors of its parent object automatically . In such way, you can reuse, extend or modify the attributes and behaviors which are defined in other class.
Read moreHow many types of inheritance are there in C#?
OOPs support the six different types of inheritance as given below : Single inheritance. Multi-level inheritance. Multiple inheritance.
Read more