3,133 views
0 votes
0 votes
A is a 2D-array with the range [-5....5,3......13] of elements.The starting location is 100. each element accupies 2 memeory cells.
Calculate the location of A[0][8] using column major order and row major order.Does indexing matter??Why C follow $0$ indexing??

1 Answer

Related questions

2 votes
2 votes
1 answer
2
Beyonder asked Dec 20, 2017
2,026 views
Consider a lower triangular Matrix A[-25....+25, -25....+25], base address (BA)=0, size of element = 100 Byte. Find the location of a [-20][-21] (Ordering: Row Major)?
2 votes
2 votes
1 answer
3
shikharV asked Nov 16, 2015
2,321 views
Please solve the above problem. Given answer: D
1 votes
1 votes
1 answer
4
Mrityudoot asked Feb 2
249 views
In what cases does an uninitialized array have values = 0 and for which cases does it have values = garbage values. How to differentiate?