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

int *iptr1, *iptr2 ;

int **iptr3 ;

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

s[i] = 7 - i ;