Question: #include int main() { float celsius; float farenheit = 75; /* declaration and initialization*/ celsius = 5.0/9.0 * (farenheit = 32.0); printf(The Celsius equivalent of
#include
int main()
{
float celsius;
float farenheit = 75; /* declaration and initialization*/
celsius = 5.0/9.0 * (farenheit = 32.0);
printf("The Celsius equivalent of %5.2f degrees Fahrenheit ");
printf(" is %5.2f degrees ", celsius);
return 0;
}
Modify the above Program to convert 86.5 degrees Fahrenheit into its equivalent Celsius value.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
