Feed Headline Animator

Temperature of a city in Fahrenheit degrees is input through the keyboard.Write a program to convert this temperature into centigrade degrees.

main( )
{
float f,c;
printf(“/n Enter temperature”);
scanf(“%f”,&f);
c=5.0/9.0*(f-32.0);
printf(“/n f=%f /t c=%f, fc);
}


Posted by: Wasim Javed

No comments:

Post a Comment