Recent content by vinaysb

  1. V

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

    #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