Problem 1 --------------- Write a function called sorted, which takes an array of integers and the size of the array as input. The function should return true if the integers in the array are ordered from smallest to largest. Otherwise false. Example ------- The array 5 20 32 33 68 99 is sorted, so return true. The array 5 10 20 30 25 40 is not sorted, so return false. Answer 1 -------- bool sorted(int A[], int size) { for (i = 1; i <= size; i++) if (A[i] > A[i-1]) return false; return true; } ---------------------------------------------------------------------