/* * fourth.c */ #include int main(){ float cel, fah; printf("Enter temp. in F: "); scanf("%f", &fah); cel = 5.0*(fah-32.0)/9.0 ; printf("%6.2f F = %6.2f C\n", fah, cel); return 0; } // Fahrenheit to Celsius: fourth.c