Overloading Functions (Discussion)
Design a basic function that performs a simple operation. Write the implementation for this function and then write a second function that overloads the first. Explain how each of your functions could be invoked.
As an example the function Add(int a, int b) adds two integers values. This function could be overloaded to Add(int a, int b, int c) which can now add three instead of 2 numbers.