For converting temperature Celsius to Fahrenheit their is a formula you just put Celsius temperature and calculate and print temperature in Fahrenheit Formula is given belowFahrenheit = ((9/5) * Celsius) + 32; //or you can use 1.8 in place of 9/5
#include<stdio.h> int main() { float cel, fah; printf("\nEnter Temperature in Celsius : "); scanf("%f", &cel); fah = (1.8 * cel) + 32; printf("\nTemperature in Fahrenheit : %f ", fah); return (0); }
Output:
Enter Temperature in Celcius : 37
Temperature in Fahrenheit : 98.599998
Process exited after 6.988 seconds with return value 0
Press any key to continue . . .
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Output:
Enter Temperature in Celcius : 37
Temperature in Fahrenheit : 98.599998
Process exited after 6.988 seconds with return value 0
Press any key to continue . . .
need an explanation for this answer? contact us directly to get an explanation for this answer