Header Ads Widget

Program to change temperature in celcious into farenheight.

#include<stdio.h>
#include<conio.h>
int main()
{
    float temc,temf;
    printf("enter temperature in celcious");
    scanf("%f",&temc);
    temf=(9*c/5)+32;
    print("temperature in farenheight=%f",temf);
    getch();
}

Post a Comment

4 Comments