I need a pointer to a static 2-dimensional array. How is this done?
static uint8_t l_matrix[10][20]; void test(){ uint8_t **matrix_ptr = l_matrix; //wron
In
int *ptr= l_matrix[0];
you can access like
*p *(p+1) *(p+2)
after all 2 dimensional arrays are also stored as 1-d.