How to Convert temperature from Celsius to Fahrenheit in C Programming language?

Here we are writing a C Program to Convert the temperature from Celsius to Fahrenheit.

We ask the user to enter the temperature in Celsius and then we calculate the temperature in Fahrenheit and display that back to user on screen.

The formula that we are using is

Temperature in Fahrenheit = ( Temperature in Celsius * 1.8 ) + 32