0% found this document useful (0 votes)
42 views

Programming For EngineersII - Lec02

This document provides an overview of pointers in C++. It discusses how pointers contain memory addresses rather than direct values, and how they enable pass-by-reference. It also covers pointer variable declarations and initialization, pointer operators like & and *, calling functions by reference using pointers, const qualifiers with pointers, pointer arithmetic, the relationship between pointers and arrays, and arrays of pointers. Examples are provided throughout to demonstrate key pointer concepts like dereferencing with *, address-of operator &, and how pointers can modify variables in other scopes by passing their addresses.

Uploaded by

Shahid Hanif
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
42 views

Programming For EngineersII - Lec02

This document provides an overview of pointers in C++. It discusses how pointers contain memory addresses rather than direct values, and how they enable pass-by-reference. It also covers pointer variable declarations and initialization, pointer operators like & and *, calling functions by reference using pointers, const qualifiers with pointers, pointer arithmetic, the relationship between pointers and arrays, and arrays of pointers. Examples are provided throughout to demonstrate key pointer concepts like dereferencing with *, address-of operator &, and how pointers can modify variables in other scopes by passing their addresses.

Uploaded by

Shahid Hanif
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 17

Programming for Engineers - II

Lecture – 02 : Pointers
by
Mati Ullah Khan
Introduction
• You have learned pass by reference

• Pointers also enable pass-by-reference

• Powerful, but difficult to master

• Use of pointers with classes will be discussed


later on in the course
Pointer Variable Declarations and
Initialization
count

7
• Pointer variables
▫ Contain memory addresses as their values
▫ Normal variables contain a specific value (direct
reference)
▫ Pointers contain the address of a variable that has a
specific value (indirect reference)
• Indirection countPtr count

▫ Referencing a pointer value 7

• Pointer declarations
▫ * indicates variable is a pointer
int *myPtr;
declares a pointer to an int, a pointer of type int *
▫ Multiple pointers require multiple asterisks
int *myPtr1, *myPtr2;
Pointer Variable Declarations and
Initialization
• Can declare pointers to any data type
• Pointers initialization
▫ Initialized to 0, NULL, or an address
 0 or NULL points to nothing
Pointer Operators
• * (indirection/dereferencing operator)
▫ Returns the value of what its operand points to
▫ *yPtr returns y (because yPtr points to y).
▫ * can be used to assign a value to a location in
memory
*yptr = 7; // changes y to 7
▫ Dereferenced pointer (operand of *) must be an
lvalue (no constants)
• * and & are inverses
▫ Cancel each other out
*&myVar == myVar
and
&*yPtr == yPtr
1 // Fig. 5.4: fig05_04.cpp
2 // Using the & and * operators
3 #include <iostream>
4
5 using std::cout;
6 using std::endl; The address of a is the value
7 of aPtr.
8 int main()
9 {
10 int a; // a is an integer
11 int *aPtr; // aPtr is a pointer to an integer
12
13 a = 7; The * operator returns an
14 aPtr = &a; // aPtr set to address of a alias to what its operand
15 points to. aPtr points to a,
16 cout << "The address of a is " << &a
17 << "\nThe value of aPtr is " << aPtr; so *aPtr returns a.
18
19 cout << "\n\nThe value of a is " << a
20 << "\nThe value of *aPtr is " << *aPtr;
21
22 cout << "\n\nShowing that * and & are inverses of "
Notice how * and
23 << "each other.\n&*aPtr = " << &*aPtr & are inverses
24 << "\n*&aPtr = " << *&aPtr << endl;
25 return 0;
26 }
The address of a is 006AFDF4
The value of aPtr is 006AFDF4
The value of a is 7
The value of *aPtr is 7
Showing that * and & are inverses of each other.
&*aPtr = 006AFDF4
*&aPtr = 006AFDF4
Calling Functions by Reference
• Call by reference with pointer arguments
▫ Pass address of argument using & operator
▫ Allows you to change actual location in memory
▫ Arrays are not passed with & because the array name is
already a pointer
▫ * operator used as alias/nickname for variable inside
of function
void doubleNum( int *number )
{
*number = 2 * ( *number );
}
▫ *number used as nickname for the variable passed in
▫ When the function is called, must be passed an
address
doubleNum( &myNum );
1 // Fig. 5.7: fig05_07.cpp
2 // Cube a variable using call-by-reference
3 // with a pointer argument
4 #include <iostream>
5
6 using std::cout; Notice how the address of number is
7 using std::endl;
8
given - cubeByReference expects a
9 void cubeByReference( int * ); // pointer (an address of a variable).
prototype
10
11 int main()
12 {
13 int number = 5;
14
15 cout << "The original value of number is " << number;
16 cubeByReference( &number );
17 cout << "\nThe new value of number is " << number << endl;
18 return 0; Inside cubeByReference, *nPtr is
19 }
20
used (*nPtr is number).
21 void cubeByReference( int *nPtr )
22 {
23 *nPtr = *nPtr * *nPtr * *nPtr; // cube number in main
24 }

The original value of number is 5


The new value of number is 125
Using the Const Qualifier with Pointers
• const qualifier
▫ Variable cannot be changed
▫ const used when function does not need to change a
variable
▫ Attempting to change a const variable is a compiler error
• const pointers
▫ Point to same memory location
▫ Must be initialized when declared
int *const myPtr = &x;
 Constant pointer to a non-constant int
const int *myPtr = &x;
 Non-constant pointer to a constant int
const int *const Ptr = &x;
 Constant pointer to a constant int
1 // Fig. 5.13: fig05_13.cpp

2 // Attempting to modify a constant pointer to

3 // non-constant data

4 #include <iostream>

5
Changing *ptr is allowed - x is not
6 int main()
a constant.
7 {

8 int x, y;

10 int * const ptr = &x; // ptr is a constant pointer to an

11 // integer. An integer ptr


can
Changing be is
modified
an error - ptr is
12 // through ptr, abut
constant pointer.points
ptr always

13 // to the same memory location.

14 *ptr = 7;

15 ptr = &y;
Error
16 E2024 Fig05_13.cpp 15: Cannot modify a const object in function main()

17 return 0;

18 }
Pointer Expressions and Pointer
Arithmetic
• Pointer arithmetic
▫ Increment/decrement pointer (++ or --)
▫ Add/subtract an integer to/from a pointer( + or += , -
or -=)
▫ Pointers may be subtracted from each other
▫ Pointer arithmetic is meaningless unless performed on
an array
• 5 element int array on a machine using 4 byte ints
▫ vPtr points to first element v[ 0 ], which is at
location 3000
location
3000 3004 3008 3012 3016
 vPtr = 3000
▫ vPtr += 2; sets vPtr to 3008 v[0] v[1] v[2] v[3] v[4]

 vPtr points to v[ 2 ]
pointer variable vPtr
Pointer Expressions and Pointer
Arithmetic
• Subtracting pointers
▫ Returns the number of elements between two
addresses
vPtr2 = v[ 2 ];
vPtr = v[ 0 ];
vPtr2 - vPtr == 2
• Pointer comparison
▫ Test which pointer points to the higher numbered
array element
▫ Test if a pointer points to 0 (NULL)
if ( vPtr == ‘0’ )
statement
Pointer Expressions and Pointer
Arithmetic
• Pointers assignment
▫ If not the same type, a cast operator must be used
▫ Exception: pointer to void (type void *)
 Generic pointer, represents any type
 No casting needed to convert a pointer to void pointer
 void pointers cannot be dereferenced
The Relationship Between Pointers and
Arrays
• Arrays and pointers closely related
▫ Array name like constant pointer
▫ Pointers can do array subscripting operations
▫ Having declared an array b[ 5 ] and a pointer
bPtr
 bPtr is equal to b
bptr == b
 bptr is equal to the address of the first element of b
bptr == &b[ 0 ]
The Relationship Between Pointers and
Arrays
• Accessing array elements with pointers
▫ Element b[ n ] can be accessed by *( bPtr +
n )
 Called pointer/offset notation
▫ Array itself can use pointer arithmetic.
 b[ 3 ] same as *(b + 3)
▫ Pointers can be subscripted (pointer/subscript
notation)
 bPtr[ 3 ] same as b[ 3 ]
Arrays of Pointers
• Arrays can contain pointers
▫ Commonly used to store an array of strings
char *suit[ 4 ] = {"Hearts", "Diamonds",
"Clubs", "Spades" };
▫ Each element of suit is a pointer to a char * (a string)
▫ The strings are not in the array, only pointers to the
strings are in the array
suit[0] ’H’ ’e’ ’a’ ’r’ ’t’ ’s’ ’\0’

suit[1] ’D’ ’i’ ’a’ ’m’ ’o’ ’n’ ’d’ ’s’ ’\0’

suit[2] ’C’ ’l’ ’u’ ’b’ ’s’ ’\0’

suit[3] ’S’ ’p’ ’a’ ’d’ ’e’ ’s’ ’\0’

▫ suit array has a fixed size, but strings can be of any


size
Questions???

You might also like