This is the program:
#include<stdio.h>
int main()
{
float ce;
float fh = ((ce*9/5)+32);
printf("Value of temperature in celcius: ");
scanf("%f",ce);
printf("value of temperature in farenheit is %f",fh);
}
The output is Value of temperature in celcius: 45
it just ends the program after i write the temperature.