int x[1][20]; int (*p)[20] = x;
p
x
int** p = (int**) x;
This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)