Function overloading means defining multiple functions with same name but with different parameters. For example you may have a function sum() with 2 arguments and with three arguments such as
int sum(int a, int b);
int sum(double a, double b, int c);


Sponsored Links