This program must meet the following criteria:
1.Prompts the user to enter a month and year.
2.Determines the number of days in the month entered (2=28, 3=31, etc.)
3.Uses the answer to step 2 in a FOR-LOOP such that the will be asked to enter a FAHRENHEIT temperature for each day of the month that includes the DATE
a.Prompts the user to enter the Fahrenheit temperature for 2/1/2009..etc
b.Continues to prompt the user for the Fahrenheit temperature for EACH day of that month entered until the loop reaches the last day of that month...e.g.2/28/2009...last dayof February.
4. After each temperature entry, the program will convert the Fahrenheit temperature into Celsius and then print the two temperatures and the date
a. On 2/1/2009 the Fahrenheit temperature was 32 F which is 0 C.... etc
b.On 2/28/2009 the Fahrenheit temperature was 212 F which is 100 C.
How do I write this in a C program?