From your comment on the haccks post, it looks like you want this:
const unsigned char ARR[SIZE][SIZE] = {...};
const unsigned char (*ARR2[])[SIZE][SIZE] = {&ARR};
If you want ARR2yourself to be const, it would be like this:
const unsigned char (* const ARR2[])[SIZE][SIZE] = {&ARR};
, ARR[x][y] ARR2[0][x][y], (*ARR2[0])[x][y] (, , ARR2[0][0][x][y]).
, , , ARR2 ARR2[0] = ARR, ARR2[0] = &ARR ( , ). , ARR , a const unsigned char *, &ARR[0][0], ARR2[0] a const unsigned char (*)[SIZE][SIZE], &ARR, , .