A program that read temperature in Celsius & display Fahrenheit in C.

#include<stdio.h>
#include<conio.h>

void main()
{
    float c,f;
    clrscr();
    printf("Enter Temperature in Celsius, c= : ");
    scanf("%f",&c);

    f=(float)9/5*c+32;
   
    printf("\nEquivelent Temperature in Fahrenheit, f = %f",f);
    getch();
}


///////////////////////////////////////////////////////////////////////////
Copy & paste this code in your TC & run, then you will get output.......
If you have any problem please comment below.........