The question are with reference to the C Programming Language Write a recursive
ID: 3751255 • Letter: T
Question
The question are with reference to the C Programming Language
Write a recursive function recursiveMaximum that takes an integer array and the array size and returns the largest element in the array. The function should stop processing and return when it receives an array of one element.
Here, you only need to do the following:
(b1) Write the function prototype
(b2) Show how the function will be called
(b3) Write the function definition for the function