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