Computer Science, asked by zshahofficial, 2 months ago

What is function overloading? How we can implement more than one function in the program with the same function name? Use C++ program ​

Answers

Answered by Anonymous
1

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) which is different from the function myfuncn(float a, int b) parameter list .

Similar questions