Could you write a code for this in C language? Please explain youre code in comments so its easy to understand. Please also attach a picture of your code. Thanks
. Write a program to convert a temperature in degrees Fahrenheit to degrees Celsius. DATA REQUIREMENTS
Problem Input
int fahrenheit /* temperature in degrees Fahrenheit */
Problem Output
double celsius /* temperature in degrees Celsius */
Relevant Formula
celsius = 5/9 ( fahrenheit − 32) A sample of program output is displayed below
____End of Assignment __________________________________________________________