int main (void) { int fahrenheit; // fahrenheit stands for fahrenheit double c; // c stands for celsius printf(\"Enter your fahrenheit, we\'ll covnvert
Integer math versus floating point math.
i = 5/9 // i is equal to 0 d = 5.0/9.0 // d is equal to whatever 5 divided by 9 would actually be
You also need to actually print the value:
printf("Here is your %f in celsius!.\n", c);