Run Time Polymorphism Explain

Explain Run time polymorphism in C++ 

Run time polymorphism: -   


Run time polymorphism achieved by using virtual functions. In this case the function is linked with a particular class at run time. This process is known as late binding. It is also known as dynamic binding, because the selection of appropriate function is done, dynamically at run time.

Labels: