C Program To Convert temperature From Degree Celsius to Fareheit



C Program To Convert Celsius to Fahrenheit

#include<stdio.h>
#include<conio.h>
void main()
{
    float c,f;
    printf("Enter the celsius scale\n");
    scanf("%f",&c);
    f=(9*c/5)+32;
    printf("Corresponding Fahrenheit scale = %f",f);
    getch();
}