I want to convert fahrenheit to celsius but when i execute it the answer is weird

vinaysb

Estimable
Jul 16, 2014
1
0
4,510
#include <stdio.h>

main()
{
int fh;
int cel;
fh = 200;
cel = 5.0 * (fh-32) / 9.0;
printf("your celsius degree is %lf\n", cel);
}

that is my code