Answers for "celsius to fahrenheit formula"

C
29

fahrenheit to celsius formula

cels = (fahr - 32.0) * 5.0/9.0; //Fahr to cels
fahr = (cels * 9.0/5.0) + 32.0; //Cels to fahr
Posted by: Guest on December-21-2020
1

celsius to fahrenheit formula

float cel;
printf("Enter celsius value: ");
scanf("%f", &cel);

printf("Fahrenhit value is: %f", cel * (9 / 5) + 32);
Posted by: Guest on June-12-2021

Code answers related to "celsius to fahrenheit formula"

Code answers related to "C"

Browse Popular Code Answers by Language