Question: Match the cout with its corresponding output based on the following assumptions. Addresses in memory: X1001 X1002 X1003 Variable declaration and initiation: int val[3]= {1,2,3};

Match the cout with its corresponding output based on the following assumptions.

Addresses in memory:

X1001 X1002 X1003

Variable declaration and initiation:

int val[3]= {1,2,3};

int *ptrVal;

ptrVal = &val[0];

Question

cout << val;

cout << ptrVal;

cout << &val[2];

cout << *ptrVal++;

cout << ++*ptrVal;

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!