1. Write out a detailed plan for a program to find the largest value in an array that is smaller than a ceiling C. For example, suppose the array has the values {4, 14, 11, 100, 6} and C=12. The program should report 11 as the answer.
3. Write out a detailed plan for a program to reverse the order of an array. For example, if the array contains the elements {0, 99, 7, 4}, then
after reversal it will contain {4, 7, 99, 0}.