Suppose:
  6   char c[] = "ABC";
  7 
  8   char *ptr   = &c;
  9   char *ptr2  = ptr;       
 10   char **ptr3 = &ptr;   

In this scenario:
- ptrrepresents an address of- c
- ptr2represents an address of- ptr. A pointer to a pointer
- ptr3is a value stored in- ptr, which is an address of- c.
**ptr3=&ptr means - Take address of ptr, look inside and assign its value (not address) to ptr3
If I understood your question correctly, you need to use pointers to pointers: ptr2 in my example instead of ptr3
If so, you can access elements like :
ptr2[0] = A
ptr2[1] = B
ptr2[2] = C
For the record the following will yeld the same results. Try it.
 12   printf ("===>>> %x\n", ptr2);
 13   printf ("===>>> %x\n", *ptr3);
Good discussion for your reference is here