/* **** * Do a little work in C. In particular, * convert fahreneheit to celcius * @author gtowell * Created: Jan 2021 * Modified: 2/16/2021 gtowell * Againqqqhhh */ #include int main(void) { // the temp in celcius double celcius; // the temp in fahrenheit float fahren; printf("Enter Fahrenheit temperature: "); scanf("%f", &fahren); celcius = (fahren - 32) * ((float)5/(float)9); printf("Celsius equivalent of %.1lf is %.1d\n", fahren, celcius); return 0; } // main()