Write a program to accept the temperature in Centigrade and convert to
Fahrenheit. (Hint: F=19c+160)/5)
Answers
Answered by
0
Explanation:
#include(stdio.h)
{
float c,f;
printf("enter the temperature in centigrate",c);
scanf("%f",&c);
f=(19*c+160) / 5;
printf("the converted value is %f", f);
return 0;
}
Similar questions