In this program, we need to print the elements of the array in reverse order that is; the last element should be displayed first, followed by second last element and so on.

Above array in reversed order:

ALGORITHM:
- STEP 1: Declare and initialize an array.
- STEP 2: Loop through the array in reverse order that is, the loop will start from (length of the array - 1) and end at 0 by decreasing the value of i by 1.
- STEP 3: Print the element arr[i] in each iteration.
Output: