Economy, asked by Itzraisingstar, 1 month ago

Can anyone explain me the function overloading?

Answers

Answered by dhruvighelani
6

Answer:

An overloaded function is really just a set of different functions that happen to have the same name. The determination of which function to use for a particular call is resolved at compile time. In Java, function overloading is also known as compile-time polymorphism and static polymorphism.

Explanation:

mark me as brainliest pls

Answered by Anonymous
7

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) which is

Similar questions