dealing with 2-D arrays or matrices of numbers in a C program 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}
};