Write a main program to call a procedure that converts the Fahrenheit temperature value stored in the location labeled TdegF to its Celsius equivalent. The range of temperatures is 32°F to 212°F. The procedure stores the converted temperature in location TdegC.
The following is the algorithm for temperature conversion:
- Subtract 32 from Fahrenheit temperature;
- Multiply the result of subtraction by five; and
- Divide the result of multiplication by nine.