Tagged: Function overloading

1

C++ – Dynamic Polymorphism

Hello Friends, Today, in this article we will mostly discuss about Dynamic Polymorphism and the difference between Static Polymorphism and Dynamic Polymorphism . Static Polymorphism : If function call binding is performed at compile time. This is also known...

1

C++ – Static Polymorphism

Polymorphism: In programming language we can say : Different functions can have the same name and if programmer call a function, which one to be executed is decided based on the arguments or the type...