////////////////////////////////////////////////////////////// countEvens // // Given an array of 0 or more non-negative integers, return the number // of even integers in the list. // // Parameters: // List[] array of unsigned integer values // numInts number of values stored in List[] (usage) // // Pre: List[] is initialized to hold numInts values, stored at // index values 0 through numInts-1. // // Returns: number of even values found in List[] // // Examples: // countEvens({14, 17, 31, 44, 9, 0, 13}) == 3 // countEvens({231, 47, 23, 37, 91}) == 0 // int countEvens(const unsigned int List[], const unsigned int numInts) { // Paste the body of your solution here and submit this file. // Do not change anything above this comment. } // Do not change anything below this comment.