Runtime polymorphism is achieved by
Answers
Answered by
1
Runtime Polymorphism can be achieved by Virtual Function.
Virtual Function is a member function which is usually defined in the base class of the program and it can be again redefined by the derived class present in the program body.
All the functions are declared with the keyword 'Virtual' in the base class and they are always declared in the public section of the class.
Similar questions