10 points Question 1(c): Write down a program that reverses the elements of a given array. The number of elements and al
Posted: Sat Nov 27, 2021 10:29 am
Question 1(c): Write down a program that reverses the elements of a given array. The number of elements and all elements of the array will be input to your program. Input: Input array elements: 5 9 30 20 40 0 7 11 15 100 Output: Reversed array : 100 15 11 7 0 40 20 30 9 5
10 points