Answers for "what is the formula to change celsius to fahrenheit"

C
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
0

different formulas to convert celsius to fahrenheit

function fahrenheitToCelsius(fahrenheit) {
  return (((fahrenheit - 32) * 5) / 9).toFixed(1);
} // Using toFixed returns a decimal value

function celsiusToFahrenheit(celsius) {
  return ((9 * celsius) / 5 + 32).toFixed(1);
} // Better to multiply in this order for celsius
Posted by: Guest on April-03-2021

Code answers related to "what is the formula to change celsius to fahrenheit"

Code answers related to "C"

Browse Popular Code Answers by Language