c to fahrenheit code example
Example 1: c program convert fahrenheit to celsius
#include<stdio.h>
void main()
{
float celsius,fahrenheit;
printf("\nEnter temperature in Fahrenheit:");
scanf("%f",&fahrenheit);
celsius=(fahrenheit - 32)*5/9;
printf("\nCelsius = %.3f",celsius);
}
Example 2: fahrenheit to celsius
fORMULA TO FIND CELSIUS TO fahrenheit .
(32°F − 32) × 5/9 = 0°C