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

Python Examples

Introduction: Python Examples are the basic programming concepts of python like python syntax,python data types,,python operators,python if else,python comments etc.. …

Read more

C String Functions

C String Functions perform certain operations, It provides many useful string functions which can come into action. The <string.h> header …

Read more