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
Get step-by-step solutions from verified subject matter experts
