Assignment h6 Due: November 2, 2021 @ 11:59PM EDT This assignment will cover opening, reading, and writing to files. There are four programs that you will be working on. p01.c - a program that opens this README file and prints out all the characters to the screen p02.c - this program reads in a list of numbers from a file using fscanf and finds the sum, largest, and smallest numbers in the file. p03.c - finding the longest word in shakespeare.txt p04.c - Turning a document that is currently in all-caps into one where just the beginning of each sentence is capitalized. Hint: p02 will use fscanf to read through the file, all of the other programs will use fgetc. Make sure you know both functions. Working versions of these programs can be found in the "working" directory. Also, the manifest file is already set up for you, you do not need to modify it.