Write a program to convert the given temperature in Fahrenheit to Celsius.
#include<stdio.h>
#include<conio.h>
main()
{
float f,c;
clrscr();
printf("Enter a Farhenite number-- ");
scanf("%f",&f);
c=(f-32)/1.8;
printf("the Secious temparatute is %f",c);
getch();
}