I have an 3D array declared like this
unsigned char ScalingList[3][2][64];
I need to access the elements of ScalingLists using another pointer, something on these lines
unsigned char (*pQM)[2][64];
pQM = &(ScalingList[0][0][0]);
and then index into the elements of ScalingList like this
pQM[i][j][k]
I know I need to have proper combination of (), * and &, but I'm not able to get it. Could someone please help me out..