This program demonstrates some relations between pointers. What is the output of this program? Assume we know that the address of the first element of the array vals is 0012FF44.   #include using namespace std;   int main() {   int vals[]={4,7,11};   cout<<"Compare the following results:"<

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter10: Pointers
Section: Chapter Questions
Problem 2PP
icon
Related questions
Question

This program demonstrates some relations between pointers. What is the output of this program? Assume we know that the address of the first element of the array vals is 0012FF44.

 

#include <iostream>

using namespace std;

 

int main() {

 

int vals[]={4,7,11};

 

cout<<"Compare the following results:"<<endl;

cout<<vals<<endl;

cout<<vals[0]<<endl;

cout<<*vals<<endl;

 

cout<<"Compare the following results:"<<endl;

cout<<vals[1]<<endl;

cout<<*(vals+1)<<endl;

cout<<*vals+1<<endl;

return 0;

}

 

Write down the output

Expert Solution
steps

Step by step

Solved in 3 steps

Blurred answer
Knowledge Booster
Concept of pointer parameter
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
Systems Architecture
Systems Architecture
Computer Science
ISBN:
9781305080195
Author:
Stephen D. Burd
Publisher:
Cengage Learning
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
New Perspectives on HTML5, CSS3, and JavaScript
New Perspectives on HTML5, CSS3, and JavaScript
Computer Science
ISBN:
9781305503922
Author:
Patrick M. Carey
Publisher:
Cengage Learning
Programming Logic & Design Comprehensive
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage
Programming with Microsoft Visual Basic 2017
Programming with Microsoft Visual Basic 2017
Computer Science
ISBN:
9781337102124
Author:
Diane Zak
Publisher:
Cengage Learning