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

     int numbers[] = { 2, 3, 5 };
     int* number_loc;
     number_loc = numbers + 1;  
     *number_loc = 0; 
     *(number_loc + 1) = 1;