Convert fahrenheit to celsius

in my code fahrenheit is alright but it not showin celcius
https://ide.codingblocks.com/s/49019

whats my mistake???

Hey Amisha, in main() line:14 c=(5/9)*(f-32); 5/9 result in an integer that will always be 0 and 0*anything will result in 0. So modify it as c=(5.0/9)*(f-32);