Advertisement

WAP TO CONVERT CELCIUS INTO FARENHEIT


CONVERT  CELCIUS INTO FARENHEIT 

 #include<stdio.h>


int main()
{
    float c,f;
    printf("enter the value of celcius \n");
    scanf("%f",&c);
    f=(c*9/5)+32;
    printf("the value in farenheit is %f",f);
    return(0);
}

Post a Comment

0 Comments