Sunday, 23 February 2014

c program convert temperature fahrenheit celsius degree

//celsius to fahrenheit

c program convert temperature fahrenheit celsius degree

#include<stdio.h>
int main()
{
    float c,f;
    printf("Enter the temp in centigrade");
    scanf("%f",&c);
    f=(1.8*c)+32;
    printf("Temperature in fahrenheit %f\n",f);
    return 0;

}

No comments:

Post a Comment