// this program is to convert temp in celsius into kelvin and fahenheit #include int main(){ float celsius,kelvin,fahrenheit; // declaring variable printf("Enter The temp in Celsius "); scanf("%f",&c); fahrenheit=(9*celsius)/5 + 32; kelvin=celsius+273.15; printf("Temperature is %f F and %f K",fahrenheit,kelvin); }