Problem #893 CORE JAVA 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