Write a program that calculates mileage reimbursement for a salesperson at a rate of $0.35 per mile. Your program should interact with the user in this manner:
MILEAGE REIMBURSEMENT CALCULATOR
Enter beginning odometer reading > 13505.2
Enter ending odometer reading > 13810.6
You traveled 305.4 miles. At $0.35 per mile, your reimbursement is $106.89.
-----
Do not hard code numbers, use the #define directive for the rate per mile as a constant (which should be in all caps).
Also, use the scanf or scanf_s function to read from the user the beginning and ending odometer.