Pallavi
Answered On : Jun 6th, 2006
0 will be returned, because division of two integers (5/9) is 0.

1 User has rated as useful.
Login to rate this answer.
0 is the answer
The division of 5/9 is 0.5
Then 0.5*(t-32) is -31.5
So roundup of this is 0.
Login to rate this answer.
rajesh
Answered On : Aug 5th, 2011
absolutely its 0... coz u is declared as int.. so u=0.5.. so it take u as 0.. and anything*0 becomes zero..
Login to rate this answer.
bhanupriya
Answered On : Jan 17th, 2012
Ans. is B. 0
Code
conv(int t){ int u; u=5/9 * (t-32); return(u); }
Login to rate this answer.