Question: Given below is a function called Reverse that reverses the input array. For example, if array elements are {1,2,3; it changes the values so that


Given below is a function called "Reverse that reverses the input array. For example, if array elements are {1,2,3; it changes the values so that array becomes 13.2.1) The PrintArray function prints the input array The main function first calls the PrintArrayo function on the original array, then calls the Reverse() function to reverse the local array, finally calls PrintArrayaan to display the arrays final contents Fill in the blanks to help the program work as it should void Printay const int array int array displays array's elements forint printed print vid Reverseeint array. Int array Suel in temo, tant end sat end array arraysize while Cend > Start int temp, *start, *end: start=...... end = &array(arraysize-11 while (end > start) temp = *start; #start = *end temp: start++ end int main() int my numbers[] = {5, 6, 7, 33, 55, 34, 99, 100, 45, 4); // has 10 elements printf("Initial array: "); PrintArray ( my numbers, 1033 Reverse (my numbers, 10): printf("Reversed array: "); PrintArray ( my numbers, 10); start++; end- } } int main() { int my numbers[] = {5, 6, 7, 33, 55, 34, 99, 100, 45, 4); // has 10 elements printf("Initial array: "); PrintArray ( my numbers, 10); Reverse ( my numbers, 10); printf("Reversed array: "); PrintArray ( my numbers, 10); } Your answer: Back Next
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
