Problem #896 C++ using OBJECT ORIENTED PROGRAMMING

Write a C++ program to create a class called Employee with methods called work() and getSalary(). Create a derived class called HRManager that overrides the work() method and adds a new method called addEmployee().

Your Solution