This is the last questions I have about arrays. I have no idea of where to go with any of them except writing the header of the functions with the parameters. Again this is just questions from a study guide for my final exam so I am not asking you to do my homework but just need some insight on how to do array problems for my exam. Thanks
Use the declarations in the 3 following exercises.
const int MAXSTUD = 100;
bool passing [MAXSTUD];
int grade, length = MAXSTUD, score[MAXSTUD];
-Write a void function called init that initializes all components of passing to true. Use passing and length as parameters.
-Write a void function called grader that has passing, score and length as parameters. Set the components of passing to false whenever the parallel value of score is less than 60.
-Write a value-returning function PassTally that takes passing and length as parameters and returns the count of components in passing that are true.