Program to convert the temperature from Celsius to Fahrenheit

1528
Program to convert the temperature from Celsius to Fahrenheit

 

#include<stdio.h>
#include<conio.h>
Void main()
{
    float c,f;        /*c for Celcious and f for Fahrenheit*/
    clrscr();
    printf(“enter celcious\n”);
    scanf(“%f”,&c);
    f=(c+32)*9/5;
    c*9/5+32;
    printf(“\n temperature in Fahrenheit of celcious .%2f is %f", c,f);
    getch();
}
   Output:
   enter celcious
   10.5
   temperature in Fahrenheit of celcious 10.50 is 76.500000
write a program to convert the temperature from celsius to fahrenhei twrite a c program to convert the temperature from celsius to fahrenheit c program to convert temperature from centigrade to fahrenheit c program to convert temperature from degree celsius to fahrenheit c program to convert temperature from degree centigrade to fahrenheit c program temperature conversion from celsius to fahrenheit program to convert temperature from celsius to fahrenheit in c Program to convert the temperature from Celsius to Fahrenheit Program to convert the temperature from Celsius to Fahrenheit estudyhelper.xyz Program to convert the temperature from Celsius to Fahrenheit estudyhelper