i am trying to do an assignment for my c++ class and i have hit a brick wall. I am supposed to write a program where 6 test scores are entered into an array; then that array is passed into a function to add a 10 point curve to those test scores entered in the array. The first part was super easy but this second part is killing me. it's only week 2 of the semester so i don't think the instructor wants us to use pointers to complete the assignment. here's what i have so far:
Iterate through the array and add 10. x[] is like calling curvedgrades() with no arguments.
Also, why are the parameters different from the prototype to the definition?