C Program to convert celcius to farenheit. 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 celcius to farenheit
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | #include <stdio.h> int main() { float celsius, fahrenheit; printf("\nEnter Temperature in Celsius : "); scanf("%f", &celsius); fahrenheit = (1.8 * celsius) + 32; // Formula to caltulate Celsius to Fahrenheit printf("\nTemperature in Fahrenheit : %f ", fahrenheit); return 0; } |
26 February 2019 1734 Written By: Rohit Mhatre
© 2020 Tech Study. All rights reserved | Developed by Tech Study| Privacy Policy | Sitemap