C Program to convert farenheit to celcius. I have used Code:: Blocks compiler for debugging purpose. But you can use any C programming language compiler as per your availability.
C Program to convert farenheit to celcius
1 2 3 4 5 6 7 8 9 10 11 12 13 | #include <stdio.h> int main() { float celsius, fahrenheit; printf("Please temperature in Fahrenheit: \n"); scanf("%f", &fahrenheit); celsius = (fahrenheit - 32) * 5 / 9; // Formula to caltulate Fahrenheit to Celsius printf("\n %f Fahrenheit = %f Celsius", fahrenheit, celsius); } |
27 February 2019 2105 Written By: Rohit Mhatre
© 2020 Tech Study. All rights reserved | Developed by Tech Study| Privacy Policy | Sitemap