program to convert fahrenheit to celsius-by enggfact - Enggfact

Latest

Convert your Passion into your Profession

Sunday, September 1, 2019

program to convert fahrenheit to celsius-by enggfact

#include<stdio.h>
int main()
{
float C,F;
printf("enter temperature in F");
scanf("%f",&F);
C=(5/9.0)*(F-32);
printf("the value of temp in celsius=%f",C);
return 0;
}

No comments:

Post a Comment