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

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: C Temperature Converter
Post your Comment