In this article i am gonna describe how to develop a multidimensional array in C code :

it pretty simple:

int main()
{
int arr[3][4];
int row,col;
              for(row = 0; row<3; row++)
{
                    printf(“n”); // Make the rows!
for(col = 0; col<4; col++)
{
arr[row][col]=col; // a condition must be given for let the compiler understand the //correlation bt array, row and col integer!
printf("%dt", arr[row][col]); }
}
return 0;
}

Try yourself, the output is shown at the picture at the top!