//write a program to temperature celsious to convert in fahrenheit and kelvin
#include<stdio.h>
int main()
{
float Celsious, Fahrenheit, Kelvin;
printf("\n Enter temperature in Celsious :");
scanf("%f", &Celsious);
Fahrenheit = 1.8*Celsious+32.0;
Kelvin = 273.15+Celsious;
printf("%0.2f Celsious = %0.2f fahrenheit \n", Celsious, Fahrenheit);
printf("%0.2f Celsious = %0.2f Kelvin \n", Celsious, Kelvin);
}