Inheritance in C++
In this article you'll read about inheritance in c++ and see some simple examples of inheritance use in the programm.
- Read more about Inheritance in C++
- Log in or register to post comments
- 514 views
Inheritance is a process which allows inheriting the methods and properties of parent or super class.
OR
Deriving an object from an existing class (super class)