Complete the code to initialize the left pointer to the start of the array.
int left = [1];The left pointer should start at index 0 to point to the first element of the array.
Complete the code to initialize the right pointer to the end of the array.
int right = [1] - 1;
The right pointer should start at the last index, which is size - 1.
Fix the error in the while loop condition to continue while left is less than right.
while ([1] < right) { // loop body }
The loop should run while the left pointer is less than the right pointer.
Fill both blanks to move the left pointer forward and the right pointer backward.
left[1]; right[2];
Use ++ to move left forward and -- to move right backward by one.
Fill all three blanks to print the elements at left and right pointers and then move them.
printf("%d %d\n", arr[1], arr[2]); [3]; [4];
Print elements at arr[left] and arr[right], then increment left pointer and decrement right pointer.
