Question: C Programming language Question 7 Given below is a function called Reverse that reverses the input array. For example, if array elements are (1,2,3) it
C Programming language

Question 7 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 (3,2,1). The PrintArray function prints the input array. The main() function first calls the PrintArray0 function on the original array, then calls the Reverse() function to reverse the local array, finally calls PrintArray() again to display the array's final contents. Fill in the blanks to help the program work as it should. void PrintArray (const int array[], int arraySize) // displays array's elements { for (int i=0; i start) { temp = *start; #start=... *end = temp start++ end- } } int maino { int my numberst = [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); }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
