Computer Science, asked by poojabaghel8296, 1 year ago

Write a program to overload functions

Answers

Answered by DhavalKumar12
2

Answer:

Function overloading is a feature in C++ where two or more functions can have the same name but different parameters. Function overloading can be considered as an example of polymorphism feature in C++. Following is a simple C++ example to demonstrate function overloading.

Answered by Mindteaser
1

Function overloading is a feature in C++ where two or more functions can have the same name but different parameters. Function overloading can be considered as an example of polymorphism feature in C++. Following is a simple C++ example to demonstrate function overloading.


poojabaghel8296: But
Similar questions