बिजनेस मार्केटिंग का लो कॉस्ट फंडा , अपने मोबाइल से ऑटो sms भेजकर मार्केटिंग करे विजिट करे http://autotextsms.com/ बिजनेस मार्केटिंग का लो कॉस्ट फंडा http://autotextsms.com/

Search This Blog

Translate

C Program to convert the given temperature in to centigrade to Fahrenheit


C Program to convert the given temperature in to centigrade to Fahrenheit

void main()
{
    float c;
    clrscr();
    printf("Enter the temperature in Centigrade=");
    scanf("%f",&c);
     printf("\n\n Temperature in Fahrenheit=%f", (c*(9.0/5.0)-32));
    getch();
}

 

 

C Program to convert the given temperature in to centigrade to Fahrenheit

 

C Program example List