Question: #include void main() { //float variables declared to store celsius and fahrenheit float cel, fah; // temperature in celsius taken input printf(Enter temperature in Fahrenheit:

 #include void main() { //float variables declared to store celsius and

fahrenheit float cel, fah; // temperature in celsius taken input printf("Enter temperature

#include void main() { //float variables declared to store celsius and fahrenheit float cel, fah; // temperature in celsius taken input printf("Enter temperature in Fahrenheit: "); scanf("%f", &fah); //celcius converted to fahrenheit using the formula of conversion cel = (fah-32)*5/9; //Printing temperature in celcius and fahrenheit printf("Celsius: %0.of "',cel); printf("Fahrenheit: %0.1f", fah); LAST RUN on 2/16/2021, 8:15:45 PM check 1 failed Output: Enter temperature in Fahrenheit: Fahrenheit: 2.2 Expected: Celsius: Fahrenheit: 32.2 Check 2 failed Output: Enter temperature in Fahrenheit: Fahrenheit: 1.0 Expected: Celsius: Fahrenheit: 33.8 Check 3 failed Output: Enter temperature in Fahrenheit: Fahrenheit: 35.@ Expected: Celsius : Fahrenheit: 95.0

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!