Warning: Only create
temperature.c. Do not touchMakefile,tests/, or any other file already in the repository. Unauthorised changes to these files will cause your submission to fail automatically.
Create a file named temperature.c that reads a temperature in Celsius from the user and prints the equivalent temperature in Fahrenheit, formatted to two decimal places.
For an input of 100, your program must print:
Temperature in Fahrenheit: 212.00
Output must match exactly — same capitalisation, spacing, and number of decimal places.
scanfto read the Celsius value from the userprintfwith%.2fto print the result
Before writing your code, write out the algorithm (step-by-step instructions in plain English) and save it as a .doc or .docx file. Submit both the algorithm document and your temperature.c as instructed in earlier assignments.
Submit your work as instructed in earlier assignments — push to your GitHub repository and verify the autograder passes in the Actions tab.