A c++ program with two functions: The first function converts degrees Celsius to Fahrenheit, the second function converts Fahrenheit to degrees Celsius. The user should be prompted to choose two options;- "1. Convert degrees Celsius to Fahrenheit" ,"2.Convert Fahrenheit to degrees Celsius". it should proceed to prompt for values and pass them to the appropriate functions.
(Use F=(C*9/5)+32 and C= (F - 32) x 5/9 )