Convert Temperature Fahrenheit to Celsius - C

C program to convert temperature Fahrenheit to Celsius.

Solution:

In this program, we will accept temperature in Fahrenheit then convert it into Celsius using following formula.

Formula = (F - 32)/1.8

#include<stdio.h>
int main()
{
     int F;
     float cel;
     printf("Enter Temperature in Fahrenheit : ");
     scanf("%d",&F);
     cel=(F-32)/1.8;
     printf("\nTemperature in Celsius = %.2f", cel);
     return 0;
}


Output:

fahrenheit to celsius