Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

( 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 built-in array is at location 1002500 in memory.
a) Declare a built-in array of type unsigned int called values with five elements, and initialize the elements to the even integers from 2 to 10. Assume that the constant SIZE has been defined as 5.
b) Declare a pointer vPtr that points to an object of type unsigned int.
c) Use a for statement to display the elements of built-in array values using array subscript notation.
d) Write two separate statements that assign the starting address of built-in array values to pointer variable vPtr.
e) Use a for statement to display the elements of built-in array values using pointer/offset notation.
f) Use a for statement to display the elements of built-in array values using pointer/offset notation with the built-in arrays name as the pointer.
g) Use a for statement to display the elements of built-in array values by subscripting the pointer to the built-in array.
h) Refer to the fifth element of values using array subscript notation, pointer/offset notation with the built-in array names as the pointer, pointer subscript notation and pointer/offset notation.
i) What address is referenced by vPtr +3? What value is stored at that location?
j) Assuming that vPtr points to values[4], what address is referenced by vPtr -=4? What value is stored at that location?

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Oracle 10g SQL

Authors: Joan Casteel, Lannes Morris Murphy

1st Edition

141883629X, 9781418836290

Students also viewed these Databases questions

Question

1. Who should participate and how will participants be recruited?

Answered: 1 week ago