100.0014 Given: short
shortinteger[100];
If
the base address of shortinteger is 75282, what would
the following command produce?
Printf(“%lu”, & shortinteger [200]);
75282 + 200 * 2 = 75282 + 400 = 75682
NOTE: even though subscript (offset) 200
is outside the range requested in the declaration, the address will still be
produced.