Computer Science, asked by iamdevsharma, 3 months ago

How many ways function overloading can be done in c++? what are these?

Answers

Answered by harshit4verma2005
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