Computer Science, asked by alisangthu, 6 months ago

Write a program to accept the temperature in Centigrade and convert to
Fahrenheit. (Hint: F=19c+160)/5)

Answers

Answered by viveksharma667883
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