I'm trying to figure out the value of pointers after the following code snippet
Code:
int s[8] ;

int *iptr1, *iptr2 ;

int **iptr3 ;

for (int i = 0 ; i < 8 ; i++)

s[i] = 7 - i ;

iptr1 = s ;

iptr2 = &s[3] ;

iptr3 = &iptr1 ;

*iptr1 = 5 ;

*iptr2 = 11 ;

**iptr3 = 14 ;
I neeed to find what the value of iptr1, iptr2, and iptr3 are after the code is executed. I'm having trouble understanding how pointers work, so any clarity on this would be appreciated. Thanks.