Hi,
I am having trouble with creating array of pointers and accessing the elements in the array.

For example:

int a1[10][20];
int a2[10][20];
int a3[10][20];

How do I create array of pointers to a1,a2,a3 that is equivalent to a[3][10][20]?

Thanks for your help!