An open API service indexing awesome lists of open source software.

https://github.com/pabitra-33/farhenit_to_celcius

Simply written programs to convert the inputted temperature in the format of farhenit and convert that to celcius using converter formula.
https://github.com/pabitra-33/farhenit_to_celcius

Last synced: about 2 months ago
JSON representation

Simply written programs to convert the inputted temperature in the format of farhenit and convert that to celcius using converter formula.

Awesome Lists containing this project

README

          

# Farhenit_To_Celcius

Simply written programs to convert the inputted temperature in the format of farhenhit and then convert that tempereture to celcius using the pre-defined converter formula.

Steps Used for this program:

First declare the double variable Celsius and Fahrenheit and take the input for temperature in Celsius using scanf function.

Calculate the temperature in Fahrenheit using the formula “Fahrenheit = (9 * Celsius) / 5 + 32;” and store it in variable named Fahrenheit.

Finally, print the result using printf function.

This is a simple Farheinhit to celcius converted program used for the conversion of the tempereture easily.