Access multidimensional array through pointer
int get(int **array, int COLUMN_SIZE, int x, y) { return *((int *)array + x * COLUMN_SIZE + y); }