belongs to collection: C Programming language Basic programs with examples
Solution:
I have used Code:: Blocks compiler for debugging purpose. But you can use any C programming language compiler as per your availability.
#include <stdio.h> int main() { float celsius, fahrenheit; printf("\nEnter Temperature in Celsius : "); scanf("%f", &celsius); fahrenheit = (1.8 * celsius) + 32; // Formula to caltulate Celsius to Fahrenheit printf("\nTemperature in Fahrenheit : %f ", fahrenheit); return 0; }
Result:
Enter Temperature in Celsius : 37
Temperature in Fahrenheit : 98.599998
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.
Solution:
I have used Code:: Blocks compiler for debugging purpose. But you can use any C programming language compiler as per your availability.
Result:
Enter Temperature in Celsius : 37
Temperature in Fahrenheit : 98.599998
need an explanation for this answer? contact us directly to get an explanation for this answer