Write C Program Allows User Choose Celsius Fahrenheit Conversion Fahrenheit Celsius Conver Q43901981

Write a C++ program that allows a user to choose between a Celsius to Fahrenheit conversion or a Fahrenheit to Celsius conversion. Once the choice is made, the program will prompt the user to enter the desired temperature and then perform the conversion by calling one of two functions: i. float celToFah(float) ii. float fahroCel (float) Note: Celsius to Fahrenheit Equation is: (°C ) + 32 = °F Fahrenheit to Celsius Equation is: (°F – 32) = °C Show transcribed image text Write a C++ program that allows a user to choose between a Celsius to Fahrenheit conversion or a Fahrenheit to Celsius conversion. Once the choice is made, the program will prompt the user to enter the desired temperature and then perform the conversion by calling one of two functions: i. float celToFah(float) ii. float fahroCel (float) Note: Celsius to Fahrenheit Equation is: (°C ) + 32 = °F Fahrenheit to Celsius Equation is: (°F – 32) = °C
Expert Answer
Answer to Write a C++ program that allows a user to choose between a Celsius to Fahrenheit conversion or a Fahrenheit to Celsius c…
OR