#include using namespace std; float largest( float arr[], int len){ return 0.1; } //@ extra credit float secondLargest( float arr[] , int len ){ return 0.1; } float mean( float arr[] , int len){ return 0.1; } int main() { int numScores = 4; float testScores[numScores ] ; int result = mean( testScores, numScores ) ; cout<< "the mean of the array is " << result <