How many ways function overloading can be done in c++? what are these?
Answers
Answered by
1
Answer: 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)
Similar questions