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

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