Home | » | C++ Programming | » | Function Overloading |
Function overloading is the practice of declaring the same function with different signatures. The same function name will be used with different number of parameters and parameters of different type. But overloading of functions with different return types are not allowed. The simple example of function overloading is given below :