Program of FUNCTION OVERLOADING
/*Program of FUNCTION OVERLOADING*/ #include #include int add(int,int,int); // function declaration float add(float,float); // function declaration int add(int q, int w, int e) // function definition { return (q+w+e); } float add(float a, float s) // function defintion { return (a*s); } int main() { int q,w,e; float a,s; coutq>>w>>e; int p=add(q,w,e); // function calling…