Practice assembly question need help Given the following arr
Practice assembly question need help
Given the following array declaration:
.data matrix
DWORD 50 DUP(10 DUP(?))
If matrix[0][0] is the 0th sequentially stored BYTE in memory, which sequentially stored BYTE is the first byte corresponding to matrix[37][0]?
Solution
here DWORD 50 DUP(10 DUP(?))
It defines a 50X10 matrix and initializes its element to the value what we give in place of (?) is taken.
here 0 is the 0th sequential stored then 37th would be the 37th sequential byte
![Practice assembly question need help Given the following array declaration: .data matrix DWORD 50 DUP(10 DUP(?)) If matrix[0][0] is the 0th sequentially stored  Practice assembly question need help Given the following array declaration: .data matrix DWORD 50 DUP(10 DUP(?)) If matrix[0][0] is the 0th sequentially stored](/WebImages/3/practice-assembly-question-need-help-given-the-following-arr-972757-1761499795-0.webp)
