C Program to Convert temperature from degree centigrade to Fahrenheit
Program to convert temperature from degree centigrade to Fahrenheit
1 2 3 4 5 6 7 8 9 10 11 12 13 |
#include<stdio.h> int main() { float celsius, fahrenheit; printf("\nEnter temp in Celsius : "); scanf("%f", &celsius); fahrenheit = (1.8 * celsius) + 32; printf("\nTemperature in Fahrenheit : %f ", fahrenheit); return (0); } |
Output :
1 2 |
Enter temp in Celsius : 32 Temperature in Fahrenheit : 89.59998 |