Question: C programming language please 11. Write a recursive function that returns 1 if an array of size n is in sorted order and otherwise. Note:
![]() |
11. Write a recursive function that returns 1 if an array of size n is in sorted order and otherwise. Note: If array a stores 3,6,7,7,12, then is Sorted(a,5) should return 1. If array b stores 3, 4, 9, 8, then isSorted(b, 4) should return 0. int issorted(int *array, int n){
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts

