What is returned by the following operations in connection t
What is returned by the following operations in connection to the given array:
.data
myArray DWORD 7 DUP (10), 456, 21, 434, 6523, ABCDE
A) TYPE myArray
B) LENGTHOF myArray
C) SIZEOF myArray
Solution
The above sentence
myArray DWORD 7 DUP(10) indicates that myArray is the array name,size of the array is 7 and the array can hold a maximum of 10 elements.
So, the above operations returns Length of myArray.
