21.1k views
0 votes
Write a program to convert Fahrenheit temperature into Celsius​

User Tommys
by
6.9k points

1 Answer

1 vote

Answer:

Step-by-step explanation:

#include<stdio.h>

#include<conio.h>

int main()

{

float farenhite, celcius;

farenhite = 64;

celcius = ((farenhite - 32)*5)/9;

printf("\\\\ temperature in celcius is : %f", celcius);

return 0;

}

User ViktorZ
by
7.3k points