/ Undifined / 4 - WAP that accepts the temperature in Centigrade and converts into Fahrenheit using the formula C/5=(F-32)/9.

4 - WAP that accepts the temperature in Centigrade and converts into Fahrenheit using the formula C/5=(F-32)/9.

WAP that accepts the temperature in Centigrade and converts into Fahrenheit using the formula C/5=(F-32)/9.

int main() {
	float celsius, fahrenheit;
 
	printf("\nEnter temp in Celsius : ");
	scanf("%f", &celsius);
 
	fahrenheit = (1.8 * celsius) + 32;
	printf("\nTemperature in Fahrenheit : %f ", fahrenheit);
 
	return (0);
}

Output


Enter temp in Celsius : 32
Temperature in Fahrenheit : 89.59998

about author

Blogger Sens it website about blogger templates and blogger widgets you can find us on social media
Previous Post :Go to tne previous Post
Next Post:Go to tne Next Post

No comments:

Post a Comment