For each of the following, write C++ statements that perform the specified task. Assume the following: const int SIZE = 5; Must use SIZE wherever a size is required. Array name is values.
Also assume that unsigned integers are stored in 2 bytes and that the base address of the array is at location 1002500 in memory.
A) Assume that vPtr again points to the base address of the array. Using array subscript notation, base/offset notation with the array name as the pointer, array notation with vPtr, and pointer/offset notation with vPtr, add 3 to the value in the first element.
B) Using array subscript notation, base/offset notation with the array name as the pointer, array notation with vPtr, and pointer/offset notation with vPtr, add 3 to the value in the 3rdelement and display that number. (Do not modify the value in the array).
C) How would you verify the size of an unsigned int on a system?