Celsius to Fahrenheit
#include <stdio.h>
main()
{
float C,F;
printf("Temperature of Celsius= ");
scanf("%f",&C);
F= (C+32)*9/5;
printf("Temperature of Fahrenheit= %.2f",F);
}
No comments:
Post a Comment