Given two integers M and N, write a program to create and display a M X N matrix using an array of pointers code example
Example: double array in c
int disp[2][4] = {
{10, 11, 12, 13},
{14, 15, 16, 17}
};
int disp[2][4] = {
{10, 11, 12, 13},
{14, 15, 16, 17}
};