Tech Study

How To Convert Celsius To Fahrenheit In C Program

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

Write a C program to print sum of digits enter by user

C program to convert string to lower case

write a c program to print sum of digits

C program to convert string to lower case

TaggedC Program to convert Celsius to Fahrenheit

Java Final keyword

Introduction : java final keyword The final keyword present in Java programming language is generally used for restricting the user. …

Read more

C++ Memory Management: new and delete

C++ Memory Management We know that arrays store contiguous and the same type of memory blocks, so memory is allocated …

Read more