Write C++ program to find maximum and minimum elements in array using recursion
belongs to collection: c++ language function and recursion programming exercises
All Answers
total answers (1)
belongs to collection: c++ language function and recursion programming exercises
total answers (1)
I have used CodeBlocks compiler for debugging purpose. But you can use any C++ programming language compiler as per your availability.
Result:
Enter size of the array: 5
Enter 5 elements in array: 10
20
30
40
50
Minimum element in array: 10
Maximum element in array: 50
need an explanation for this answer? contact us directly to get an explanation for this answer