Computer Science, asked by PragyaTbia, 1 year ago

What is function overloading?

Answers

Answered by Arslankincsem
0

Function overloading is a comment in C++ where two or more functions can have an identical name but many parameters.


Use overloading can be viewed as an instance of polymorphism feature in C++. Pursuing is a simple C++ standard to manifest function overloading.


Also, C++ allows specification of more than one function of the same name in the same scope.


These are called overloaded functions and are described in detail in Overloading.


Overloaded functions enable programmers to supply different semantics for a function, depending on the types and number of arguments.


Answered by Tabassumnt3838
0

"Several function having same name but different argument list is called function overloading".

Similar questions