I am a beginner and need help with this program. i dont know where to start, if you all can help me it will be good.
Student grade records are stored in “Student Data.txt” file.
Your tasks are:
1.define a structure for student grade records for data
stored in file with additional fields for average exam
score and grade.
2. declare an array of records on the HEAP.
3. populate from the file: “Student Data.txt”.
4. define a function to display student records (formatted).
5. define a function to compute average and
populate average field.
6. define a function to compute the grade and
populate grade field.
7. define a function to compute class average.
8. define a function to compute class standard deviation.
9. display class average and standard deviation.
10. demonstrate ALL functions.
11. Use this assignment as the cover sheet.
12. Document your test results.
13. List your source code.
This assignment requires the use of structures, arrays, files and functions. How can you be at this coding level and not know where to start? At least make an attempt. Maybe do the function prototypes so you know what datatypes you will be passing around. Or write up a quick flowchart to help guide you through the program logic.