C program to convert temperature from degree celsius to fahrenheit

Temperature conversion formula from degree Celsius to Fahrenheit is given by –

C program to convert temperature from degree celsius to fahrenheit

Write Formula in C

f = (c * 9 / 5) + 32

Program to convert temperature from Celsius to Fahrenheit

				
					#include<stdio.h>
int main(){
	
	//c program to convert Celsius to Fahrenheit
	float celsius, fahrenheit;
	
	//User input Celsius value
	printf("Enter Temperature in Celsius:- ");
	scanf("%f",&celsius);
	
	//Calculate Fahrenheit
	fahrenheit = (celsius * 9 / 5) + 32;
	
	//print the result
	printf("Celsius = %f Fahrenheit", fahrenheit);
	return 0;
}
				
			

Output

C program to convert temperature from degree celsius to fahrenheit

C program to convert temperature from degree celsius to fahrenheit

Comments

No comments yet. Why don’t you start the discussion?

Leave a Reply

Your email address will not be published. Required fields are marked *