Write two functions, one of which returns the Fahrenheit value of a Celsius temperature, and another that does the opposite. Use a separate file for headers and functions.
Use the two functions to write a temperature converter. The converter should ask for a temperature, then a scale, then display the converted result.
The converter code should be in a separate file from the functions, so you'll end up with three files: A header file for the functions (i.e. temp_functions.h), the functions themselves (temp_functions.cpp), and the converter program (temp_converter.cpp).
Print and turn in your code and a sample run of the program.