C Program to convert temperature from degree centigrade to Fahrenheit

#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 C Program to convert temperature from degree centigrade to Fahrenheit Reviewed by Prashant Sengar on December 21, 2017 Rating: 5

No comments:

Powered by Blogger.