100.0110 Given:  unsigned long  mydata[4][6];

 

If the base address of the array is 7200, at what address will we find mydata[3][2] ?

 

Since the array mydata is of data type long, each element requires 4-bytes of storage. Each row (outer subscript) requires 4 * 6 = 24- bytes of storage, and each column (inner subscript) element requires 4-bytes of storage. Therefore, &mydata[3][2] is:

 

7200 + 3 * 24 + 2 * 4 = 7200 + 72 + 8 = 7280