Sarah is creating a math library and wants to write a sum function that can add two integers, two floats, or an integer and a float. Which C++ feature should she use?

  • Function Overloading
  • Function Overriding
  • Operator Overloading
  • Type Casting
Sarah should use Function Overloading. This allows her to define multiple functions with the same name but different parameter types. In this case, she can create overloaded functions that accept different combinations of integers and floats to achieve the desired behavior for her sum function.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *