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