Problem #904
C++ using OBJECT ORIENTED PROGRAMMING
Write a C++ program to create an abstract class Animal with an abstract method called sound(). Create derived classes Lion and Tiger that extend the Animal class and implement the sound() method to make a specific sound for each animal.