//WAP to convert temperture from farenheit into degree celsius
//Header files
#include<stdio.h>
#include<conio.h>
//Main functrion
void main()
{
//Variable declaration of type float
float farhen,cel;
//Function for clearing screen
clrscr();
printf("Enter degree in farenheit:");
scanf("%f",&farhen);
cel=5*(farhen-32)/9;
printf("Temperature in degree celsius:%f",cel);
//Function for holding screen until any key is pressed
getch();
}