Question: ( Write C + + Statements ) For each of the following, write C + + statements that perform the specified task. Assume that unsigned
Write C Statements For each of the following, write C statements that perform the specified task. Assume that unsigned integers are stored in two bytes and that the starting address of the builtin array is at location in memory.
a Declare a builtin array of type unsigned int called values with five elements, and initialize the elements to the even integers from to Assume that the constant SIZE has been defined as
b Declare a pointer vPtr that points to an object of type unsigned int.
c Use a for statement to display the elements of builtin array values using array subscript notation.
d Write two separate statements that assign the starting address of builtin array values to pointer variable vPtr
e Use a for statement to display the elements of builtin array values using pointeroffset notation.
f Use a for statement to display the elements of builtin array values using pointeroffset notation with the builtin arrays name as the pointer.
g Use a for statement to display the elements of builtin array values by subscripting the pointer to the builtin array.
h Refer to the fifth element of values using array subscript notation, pointeroffset notation with the builtin array names as the pointer, pointer subscript notation and pointeroffset notation.
i What address is referenced by vPtr What value is stored at that location?
j Assuming that vPtr points to values what address is referenced by vPtr What value is stored at that location?
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
