C Temperature Converter
Here we are going to illustrates you how to convert temperature from Celsius to Fahrenheit in C. You can see in the given example, we prompt the user to enter the temperature in celsius. The scanf() function gets the entered temperature and by using the following statement shown, the temperature is converted into Fahrenheit.
fahrenheit = (1.8 * celcius) + 32;
Here is the code:
TEMPCONV.C
#include <stdio.h>
|
Output will be displayed as:
TEMPCONV.EXE