/* * expprec2.c - correct farenheight to celcius due to precidence */ #include int main(void) { int fahr; float cel; fahr=75; cel=(float)(fahr-32)*5/9; printf("The temperature in Celsius is %.2f.\n", cel); return 0; }