Q. Code reuse can be achieved in a C++ program using ______.
β
Correct Answer: (C)
Inheritance
Explanation: Inheritance is a process of defining a new class based on an existing class by inheriting its common members and methods. Inheritance allows us to reuse code, it improves the reusability in your C++ code.