Computer Science, asked by Mrsenior, 1 month ago

Can anyone help !!!
Write a C function celsius() to convert degrees Fahrenheit to degrees Celsius. (The
conversion formula is °C = 5/9 * (°F - 32).) Use it to print a Fahrenheit-to-Centigrade table
for -40 to 220 degrees Fahrenheit, in increments of 10 degrees.

Answers

Answered by manirathnam282006
1

Answer:

int main()

{

float c,f;

scanf(“%f”,&f);

c=(5.0/9)*(f-32);

printf(“f=%f\n”,f);

printf(“c=%f\n”,c);

Similar questions