Description:
Convert Celsius to Fahrenheit.
Convert Celsius to Fahrenheit.
C Code
#include <stdio.h>
int main() {
float c = 37.0, f = (c * 9.0 / 5.0) + 32;
printf("%.1f C = %.1f F\n", c, f);
return 0;
}
Expected Output
37.0 C = 98.6 F