/
Pointer Data Type and Pointer Variables Pointer Data Type and Pointer Variables

Pointer Data Type and Pointer Variables - PowerPoint Presentation

calandra-battersby
calandra-battersby . @calandra-battersby
Follow
449 views
Uploaded On 2016-06-19

Pointer Data Type and Pointer Variables - PPT Presentation

you learned how to declare pointer variables how to store the address of a variable into a pointer variable of the same type as the variable how to manipulate data using pointers you ID: 368480

type pointer int variable pointer type variable int operator data endl cout amp address memory statements dereferencing location variables

Share:

Link:

Embed:

Download Presentation from below link

Download Presentation The PPT/PDF document "Pointer Data Type and Pointer Variables" is the property of its rightful owner. Permission is granted to download and print the materials on this web site for personal, non-commercial use only, and to display it on your personal computer provided you do not modify the materials and that you retain all copyright notices contained in the materials. By downloading content from our website, you accept the terms of this agreement.


Presentation Transcript

Slide1

Pointer Data Type and Pointer Variables

you learned how to declare pointer variableshow to store the address of a variable into a pointer variable of the same type as the variablehow to manipulate data using pointersyou will learn how to allocate and deallocate memory during program execution using pointers.

By:

Nouf

Aljaffan

Edited

by :

Nouf

Almunyif

Slide2

Pointer Data Type and Pointer Variables

C++’s data types are classified into three categories:SimpleStructuredPointers.Slide3

What is the Pointer ValueSlide4

Pointer Data Type and Pointer Variables

There is no name associated with pointer data typesIf no name is associated with a pointer data type, how do you declare pointer variables?p is called a pointer variable

of type

int

ch

is called a pointer variable of type

char

.Slide5

Pointer Declaration

Thus, the character * can appear anywhere between the data type name and the variable name.Slide6

Pointer Declaration

int* p, q;In this statement:only p is the pointer variable, not q.Here, q is an int variable.we prefer to attach the character * to the variable name. So the preceding statement

is written as:

int

*p, q;Slide7

Pointer operator

C++ provides two operators operator to work with pointers.(&) the address of operator (*) the dereferencingSlide8

Address of Operator (&)

is a unary operator that returns the address of its operand.For example, given the statements:int x;int *p;The statement: p

= &x

;

assigns the address of x to p. That is, x and the value of p refer to the same

memory locationSlide9

Dereferencing Operator (*)

referred to as indirection operatorrefers to the object to which its operand (that is, the pointer) points.For example, given the statements:

25

X

pSlide10

Dereferencing Operator (*)

Let us consider the following statements:In these statements:p is a pointer variable of type intnum is a variable of type int.Let us assume that memory location 1200 is allocated for p, and memory location 1800

is allocated

for

num.Slide11

Dereferencing Operator (*)

Consider the following statements.num = 78;p = #

*

p = 24;Slide12

Example

#include <iostream> #include <string>using namespace std;

//===============================

int

main() {

int

*p;

int

x = 37;

cout

<<

"x= " << x<<

endl

;

p=&x;

cout <<"*p= "<< *p <<" , x= "<<x<<

endl

;

*p=85;

cout <<"*P= " <<*p <<" , x= "<<x<<

endl

;

cout

<<" Address of p is : "<< &p <<

endl

;

cout

<<"value of p : "<< p<<

endl

;

cout

<< " value of memory location pointed to by *p = "<<*p<<

endl

;

cout

<<"Address of X = " << &x<<

endl

;

cout

<<" Value of x = " << x<<

endl

;

return 0;

}Slide13