Question 1: Write a program that prompts the user for two numbers, finds the sum and difference for those numbers and displays a descriptive label for each computation by calling two different functions. Use Function Prototypes.
- The 1st function should be called SumLabel and should print out the statement "This is the Sum".
- The 2nd function should be called DifferenceLabel and should print out the statement "This is the Difference".
- The main function should prompt the user for the 2 numbers, call the function to display the correct label, then calculate and display the sum of the numbers.
Call the function to show the correct label, then evaluate and display the difference of the numbers.
I wrote this but it's not working. Can you please help me edit the code so it works or else prepare a new code.