10 points Question 1(c): Write down a program that reverses the elements of a given array. The number of elements and al
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
10 points Question 1(c): Write down a program that reverses the elements of a given array. The number of elements and al
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