C Program To Convert Fahrenheit To Celsius


C Program To Convert Fahrenheit To Celsius

Learn How To Convert Fahrenheit To Celsius in C Programming Language. This C Code For Temperature Conversion from Fahrenheit into Celsius is developed using Simple Mathematical Operators.

Formula To Convert From Fahrenheit To Celsius:

Celsius = (Fahrenheit – 32 ) / (9/5)
This Formula can be further modified as:
Celsius = (Fahrenheit – 32 ) / (1.8)

Program:

Expected Output:

Enter The Temperature in Fahrenheit:168
Temperature in Celsius:75.5556

Comments

Popular posts from this blog

C Program To Find Largest Number Among Three Integers

C Program To Reverse a Number