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 {3,2,1}.

The PrintArray function prints the input array.

The main() function first calls the PrintArray() function on the original array, then calls the Reverse() function to reverse the local array, finally calls PrintArray() again to display the arrays final contents.

Fill in the blanks to help the program work as it should.

void PrintArray (const int array[], int arraySize) // displays arrays elements { for (int i=0; i< .. ; i++) printf("%d ", ); printf(" "); }

void Reverse (int array[], int arraySize) { int temp, *start, *end;

start = .. ; end = &array[arraySize-1]; 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, 10 ); Reverse ( my_numbers, 10 ); printf ( "Reversed array: " ); PrintArray ( my_numbers, 10 );

}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!