Showing posts with label fahrenheit to centigrade. Show all posts
Showing posts with label fahrenheit to centigrade. Show all posts

Thursday, 19 May 2011

Conversion of Temperature (Fahrenheit to Centigrade)

The program to convert temperature from Fahrenheit to Celsius(Centigrade)


#include<stdio.h>
#include<conio.h>
void main (main)
{
 float ftemp,ctemp;
 clrscr();
 printf("Enter the temperature in Fahrenheit : ");
 scanf("%f",&ftemp);
 ctemp = (ftemp-32)*5/9;
 printf("\nTemperature in Centigrade : %.2f",ctemp);
 getch();
}


What is this?