Problem #915 C++ using OBJECT ORIENTED PROGRAMMING

Write a C++ program to create an abstract class Bird with abstract methods fly() and makeSound(). Create derived classes Eagle and Hawk that extend the Bird class and implement the respective methods to describe how each bird flies and makes a sound.

Your Solution