Hi,
another question to ensure that I understood fine...

If I store the array in a pointer to a pointer and increment it in one, should it store the address of the next pointers array?

Code:
char Array[2][2];
char **PointerToPointer;
char *Pointer;

PointerToPointer = &Array + 1;
Pointer = &Array + 1;

// expected in my headbreaks
*PointerToPointer == &Array[1][0] // address of next pointer array
*Pointer == Array[0][1] // next address into the array

// but it allways is
*PointerToPointer == Array[0][1] // next address into the array
*Pointer == Array[0][1] // next address into the array



What I did wrong?

thanks in advance,
txes