Problem Description: Define precisely what your program calculates,
the input, and the output.
The Algorithm: This stage of the process requires you to think
about how you'll solve the problem above (independent of a programming
language). Recall that we used the following formula to calculate
Celsius (C) from Fahrenheit (F): C = (5/9) (F - 32)
The Program: Write the program in C. We have provided the template for the program.
#include <stdio.h>
/* Comments:
*/
int main(void){
/* terminate the program */
return 0;
}