Meaning the first mark entered is for student #1,second mark for student #2 and so on. For array declaration purposes, the number of students in the class would never be more than 60. Your program should read and save the inputs in an array first. Then it should process the array to calculate the mean average value for the test, the higher scorer for the test and the student number that correspond to the scores. Your program should contain at least 2 other functions, MEAN and TOPSCORER. Function MEAN should accept the array of the marks as the parameter and anything else you feel relevant and return the mean value. Function TOPSCORER should also have the same parameter list but need not return any value. It will find and print the necessary high score and scorer from the function itself. You may calculate the percentage of students who scored above mean value in the main program.