Today, let’s take a look at how to convert Fahrenheit to centigrade in C Programming. My previous program was How to – Convert km to m,feet, inch and cm in C. This is a C program to convert temperature from Fahrenheit to Centigrade. This is the 4th question of section I of the first chapter: Getting Started of the book, “Let us C” by “Yashwant Kanetkar”. I would really like if you post a thank you in the comments. If you have any doubts, requests or suggestions, feel free to use our comments section. Do share it with your friends and fellow learners as it may be helpful for them.
Question:
The temperature of a city in Fahrenheit degrees is input through the keyboard. Write a program to convert temperature into centigrade degrees.
Solution: C program to convert temperature from Fahrenheit to Centigrade
First we to accept the temperature and store it into float datatype. The formula (f – 32) / 1.8 is used to convert temperature from Fahrenheit to centigrade. The value obtained from the formula is stored in another float variable and then the output is displayed. This is a very simple program and can be done in minutes.
Download here:
Download ProgramSource Code: C program to convert temperature from Fahrenheit to Centigrade
Download C program to convert temperature from Fahrenheit to Centigrade here:
Download ProgramHope this tutorial has helped you in some way. Please subscribe to us and share our content so that we can keep working on more stuff for you. In case of any requests or problems, please contact us via the contact page on our website.