#include<stdio.h>
int main()
{
float celsius,fahrenheit;
printf("Enter the value of celsius");
scanf("%f",&celsius);
fahrenheit=celsius*9/5+35;
printf("Calculate the %f",fahrenheit);
return 0;
}
#include<stdio.h>
int main()
{
float celsius,fahrenheit;
printf("Enter the value of celsius");
scanf("%f",&celsius);
fahrenheit=celsius*9/5+35;
printf("Calculate the %f",fahrenheit);
return 0;
}
0 Comments