Answers for "temperature form fahrenheit to celcius c formula"

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

Code answers related to "temperature form fahrenheit to celcius c formula"

Code answers related to "C"

Browse Popular Code Answers by Language