Computer Science, asked by skmswathi98, 1 year ago

what is funtion overloading

Answers

Answered by batul786
3
Function Overloading is reuse of the same function name or symbol for 2 or more distinct function or operation. Function overloading is concept of c++. A function can be declared more than once with difference operation. In "C" language, the same function is name illegal to declare more than once. But c++ is benefited with this feature. It is the compiler job which one is the right to choose. The one function makes for different operation have the advantage of good readability of a program.
Answered by nice2
2
In some programming languages,Funtion overloading or method overloading is the ability to create multiple methods of the same name with different implementations
Similar questions