1. Trace through this code that modifies an array using pointers.

     int numbers[] = { 2, 3, 5, 8 };
     int* num1_loc, num2_loc;
     num1_loc = numbers;  
     num2_loc = numbers + 3; 
     num1_loc++; 
     num2_loc--; 
     *num1_loc = *num2_loc;