Problem #893 C++ using OBJECT ORIENTED PROGRAMMING

Write a C++ program to create a class called Animal with a method called makeSound(). Create a derived class called Cat that overrides the makeSound() method to bark.

Your Solution