Arrays: Solve these problems with iteration and recursion. Solve these problems using array syntax and pointer arithmetic syntax Here is an example of the four: Find the max in an array of n numbers Iteration using array syntax: int max(int *array, unsigned int length) { // we would need to specify what to return in this case if (length == 0) return 0; int result = array[0]; int i; for(i=1;i