I've seen tutorials and youtube videos but I can't figure out how does multidimensional array stores variables
1 D array
When I write the below the line in code it means the compiler allocate five memory location and store five integer variable
int [5] = { 1, 2,3, 4,5};
2 D array
When...