This is a question on my homework could you help me figure it out?
Write a non-recursive procedure that takes an array and its length and prints its elements in the reverse order. For example, if the array has elements 77, 12, 90, 34, 45, the procedure should print the values 45, 34, 90, 12, 77. Here is the header for the procedure: Procedure printReverse(array[], length)