Write a msb program to convert the given temperature in Fahrenheit to Celsius​

Write a msb program to convert the given temperature in Fahrenheit to Celsius​

About the author
Clara

1 thought on “Write a msb program to convert the given temperature in Fahrenheit to Celsius​”

  1. Answer:

    plz mark brainlist

    Explanation:

    #include<stdio.h>

    int main()

    { float Fahrenheit, Celsius;

    Fahrenheit = 64;

    Celsius = ((Fahrenheit-32)*5)/9;

    printf(“\n\n Temperature in Celsius is : %f”,Celsius);

    return (0);

    }

    Reply

Leave a Reply to Sadie Cancel reply