#include<stdio.h>
#include<conio.h>
void main()
{
float fah,cel;
printf("\n\n Enter the temperature in Fahrenheit= ");
scanf("%f",&fah);
cel=(fah-32)/1.8;
printf("\n\n Temperature in Degree Celcius=%f",cel);
getch();
}
#include<conio.h>
void main()
{
float fah,cel;
printf("\n\n Enter the temperature in Fahrenheit= ");
scanf("%f",&fah);
cel=(fah-32)/1.8;
printf("\n\n Temperature in Degree Celcius=%f",cel);
getch();
}