WRITE A PROGRAM TO CONVERT CELCIUS TEMPERATURE INTO FAHRENHEIT TEMPERATURE.

 #include <stdio.h>


int main()

{

    float celcius=12,fahrenheit;

    fahrenheit=(celcius*9/5)+32;

    printf("convert celcius to fahrenheit %f",fahrenheit);


    return 0;

}


No comments:

Post a Comment

Programming in C Language

  PROGRAM LIST TO BECOME PRO IN C    😍😍😍            PRACTICE SETS                                                        UNIT -1  👇   IN...