Function Overloading In C++ - Coaching Institute Welcome to TCCI-Tririd Computer Coaching Institute. C++ is an object oriented programming language. Polymorphism is one of the most important concept of object oriented programming language. Polymorphism means more than one form.
Polymorphism contains function overloading and operator overloading. Function Overloading: Same function name with different signatures is called function overloading. i.e. int Sum(int a, int b); int Sum(int a, int b, int c); These two functions are c example of function overloading.