Write a program named fahrenheittocelsius that accepts a temperature in fahrenheit from a user and converts it to celsius by subtracting 32 from the fahrenheit value and multiplying the result by 5/9. display both values to one decimal place.

Answer :

roger48118
float   f;
scanf(" %f",&f);
printf("%.1f F %.1f C\n", f,(f-32)*5./9.);

Other Questions