399 views
1 votes
1 votes

1 Answer

0 votes
0 votes

4D Array

Even if we consider it as 4D Array in actual implementation it is stored linear fashion, as shown in the highlighted part. Hope it may help :)

Related questions

6 votes
6 votes
0 answers
1
V pandey asked Oct 8, 2022
3,048 views
Consider a multi-dimensional array A [90][30]40] with base address start at 1000, calculate the address of A[10][20][3] in row major order and column major order. Assume ...
0 votes
0 votes
0 answers
2
ritus asked Aug 17, 2018
480 views
Let A be a two-dimensional array declared as follows: A: array[1..23][1..19] of integer; Assuming that each integer takes one memory location, the array is stored in rowm...
2 votes
2 votes
4 answers
4
iarnav asked May 8, 2017
2,520 views
char * a[] = "red shoes";How the space in string constant "red shoes" will be stored in 1-D array in memory?