#include
<stdio.h> |
void
main() |
{ |
float
c,f; |
printf("Enter Temperature in Celcius
: "); |
scanf("%f",&c); |
f=c*9/5+32; |
printf("\nFahrenheit = %f",f); |
} |