InterviewSolution
Saved Bookmarks
| 1. |
Write an algorithm to convert temperature from Celsius to Fahrenheit |
|
Answer» The algorithm for the conversion of temperature from Fahrenheit to Celsius is as follows:
The code for the same is - # include < stdio . h > # include < conio . h > void main ( ) { float a , b ; clr scr( ) ; printf(" Fahrenheit: "); scanf("%f", & b ); a = ( b - 32 ) * ( 5 / 9 ) ; printf(" \ n \ t % . 2b Fahrenheit = % . 2b Centigrade " , b , a ) ;
|
|