Introduction
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.
#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); }
1 thought on “C Program to Convert farenheit to celcius”