C Program to Convert temperature from degree centigrade to Fahrenheit
- #include<stdio.h>
- void main()
- {
- float celsius, fahrenheit;
- printf("\nEnter temp in Celsius : ");
- scanf("%f", &celsius);
- fahrenheit = (1.8 * celsius) + 32;
- printf("\nTemperature in Fahrenheit : %f ", fahrenheit);
- getch();
- }
No comments:
Post a Comment