Answers for "formula to calculate celcius form farenheight"

C
4

celsius to fahrenheit formula

fahr = celsius * (9.0/5.0) + 32.0;
Posted by: Guest on January-11-2021
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 "formula to calculate celcius form farenheight"

Code answers related to "C"

Browse Popular Code Answers by Language