Basically I have three char**: **A, **B and **C. I want to make a pointer that shows A,B and C like this:
ptr[0] will be **A
ptr[1] will be **B;
ptr[2] will be **C;
so if I add one at ptr it will show me the next array. And if this is possible then how I can represent A[i][j] with the pointer?
char *ptr[] = { *A, *B, *C };, thenptr[i][j]?