C Programming Code Examples C > Conversions Code Examples Program to Convert temperature from degree centigrade to Fahrenheit Program to Convert temperature from degree centigrade to Fahrenheit #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); printf("Happy Codings - C Programming Language"); return (0); }