2) What is function overloading? What are its advantages?
Answers
Answered by
2
Explanation:
overloading is the ability to create multiple functions of the same name with different implementation
Function overloading is a C++ programming feature that allows us to have more than one function having same name but different parameter list, when I say parameter list, it means the data type and sequence of the parameters, for example the parameters list of a function myfuncn(int a, float b) is (int, float)
Answered by
0
Answer:
function overloading is aC++ programming feature that allows us to has than one function having same name but different parameter list, when I say parameter list it means the data type and sequence of the parameters for example the parameters list of a function myfuncn (int a, float b)
Similar questions