100.0016 Given: int reginteger[50];
If
the base address of reginteger is 16552, what would
the following command produce?
Printf(“%lu”, & reginteger [15]);
16552 + 2 * 15 = 16552 + 30 = 16582 (assuming a 2-byte
integer)
- OR -
16552 + 4 * 15 = 16552 + 60 = 16612 (assuming a 4-byte
integer)