nthesis. In the answer box arr[] = {1,9,7,8}; * intPtr = arr; :« &intPtr « endl; E« (arr[0] + 1) « enc :« (arr[arr[0] + 2]) « E « * intPtr « endl; intPtr;
![Consider the following C++ program and its memory address assignments shown between
parenthesis. In the answer box, write the output of the program in the correct order.
int arr[] = {1,9, 7,8};
arr
int * intPtr = arr;
(0×2AF)
cout « &intPtr « endl;
intPtr
сout « (arr[0] + 1) «еndl;
(OXB11)
cout « (arr[arr[0] + 2]) « endl;
cout « * intPtr « endl;
++ intPtr;
сout «intPtr[0] « еndl;](/v2/_next/image?url=https%3A%2F%2Fcontent.bartleby.com%2Fqna-images%2Fquestion%2Fe38f1105-404a-45fb-9f23-9755279178e8%2F16693b63-d7f9-40ac-8f60-15e84dac5d15%2F2q2he5k_processed.png&w=3840&q=75)
![](/static/compass_v2/shared-icons/check-mark.png)
Since *intPtr is pointer variable that holds arr address of start index 0
&intPtr means address of pointer variable where this is stored or located into the memory which is given 0xB11
so that cout statement print the same 0xB11
In next cout statement arr[0] has value of array at index 0 which is 1 and increment its value by 1 so that print
1+1 =2
In third cout statement executed index arr[0] +2 first that gets 1+2 =3 then arr[3] computed and print as 8
In fourth cout statement *intPtr means that value of pointer variable intPtr is the value at start index of array by default that prints 1
In next statement increment pointer position by 1 ,so that it points to index position 1 of array arr[1];
Now the last given cout statement intPtr[0] points to arr[1] and prints their value 9.
Step by step
Solved in 2 steps
![Blurred answer](/static/compass_v2/solution-images/blurred-answer.jpg)
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
![Starting Out with Python (4th Edition)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
![Starting Out with Python (4th Edition)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
![C How to Program (8th Edition)](https://www.bartleby.com/isbn_cover_images/9780133976892/9780133976892_smallCoverImage.gif)
![Database Systems: Design, Implementation, & Manag…](https://www.bartleby.com/isbn_cover_images/9781337627900/9781337627900_smallCoverImage.gif)
![Programmable Logic Controllers](https://www.bartleby.com/isbn_cover_images/9780073373843/9780073373843_smallCoverImage.gif)