This has to be in C programming. Could you also put comments on all of the functions?
ASSIGNMENT #10
12 points
DUE
name: 20 characters
identification number: int
GPA: double - round to two decimal places when you print this
Use "const" to prevent mutation of the array in these functions.
Sample output:
Bill Gates 10013.92
Steve Jobs 10023.44
Dennis Ritchie 10033.86
As before, your grade will be based on the correctness of your output, as well as the proper use of:
1. meaningful variable names
2. indentation
3. blank lines and spacing
4. use next-line style, rather than end-of-line style, for {}
5. comments on the following:
- program description
- function descriptions
- section descriptions
- all variable and constant declarations
6. local variables (versus global variables)
7. format and appearance of output
8. structured code (e.g., no goto, break (except in a switch), continue, etc. statement)
Turn in printouts of your program listing and the output. Make sure that your full name is on it. Staple the assignment sheet to the top of your program.