C Program to convert Celsius to Fahrenheit

Introduction

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.

#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;
}

Result

C Program to convert Celsius to Fahrenheit
C Program to convert Celsius to Fahrenheit

Leave a Comment