#include
void main()
{
float f,c;
printf("enter temperature in celsius\n");
scanf("%f",&c);
f=c*1.8+32;
printf("Temperature in fahrenheit is %f\n",f);
}
Output:
C Program to convert temperature from degree centigrade to Fahrenheit
Reviewed by Prashant Sengar
on
December 21, 2017
Rating:
No comments: