Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Deeping into Pointers | References & Pointers
C++ Intermediate | Mobile-Friendly
course content

Course Content

C++ Intermediate | Mobile-Friendly

C++ Intermediate | Mobile-Friendly

1. Data Types and Arrays
2. References & Pointers
3. Dynamic Memory
4. Functions

Deeping into Pointers

Let’s return to the previous code:

Here the variable pb is a pointer. It contains the address to the variable b. Use the pointer without an asterisk to output the address the pointer contains and with an asterisk to get the value of the variable by address:

12
cout << pb << endl; // address of the variable b cout << *pb << endl; // the value of the b
copy

The pointer always points to the address of the declared variable, and if the value of the variable changes, the address doesn’t:

1234567
int b = 2; int *pb = &b; cout << *pb << endl; b = 1; cout << *pb << endl
copy
1. Which of the following statements is true?
2. Output the address of x and then the value of x using pointers.

Which of the following statements is true?

Select a few correct answers

question-icon

Output the address of x and then the value of x using pointers.

int x = 2;
int *px = &x;

cout <<
<< endl;
cout <<
;

Click or drag`n`drop items and fill in the blanks

Everything was clear?

Section 2. Chapter 2
We're sorry to hear that something went wrong. What happened?
some-alt