0
Find the Largest element in array using recursion in c ?
2 Answers
+ 3
Int Largest(array)
If length of array is 1 then the largest element is the one.
Otherwise the largest element is the maximum of first element in Array and the largest of the rest of the array.
+ 5
Your attempt?