0% found this document useful (0 votes)
77 views29 pages

Chap 09 1

This document discusses pointers in C programming. It begins by defining a pointer as a variable that contains the address of another variable. It then lists topics to be covered, including pointer constants, values, variables, accessing variables through pointers, declaration, definition, redirection, and initialization. The document provides examples and code snippets to demonstrate using pointers to access and manipulate variables. It shows how to declare and initialize pointer variables, demonstrate flexibility through one pointer for many variables and one variable with many pointers, and add two numbers using pointers.

Uploaded by

Leela Pallava
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
77 views29 pages

Chap 09 1

This document discusses pointers in C programming. It begins by defining a pointer as a variable that contains the address of another variable. It then lists topics to be covered, including pointer constants, values, variables, accessing variables through pointers, declaration, definition, redirection, and initialization. The document provides examples and code snippets to demonstrate using pointers to access and manipulate variables. It shows how to declare and initialize pointer variables, demonstrate flexibility through one pointer for many variables and one variable with many pointers, and add two numbers using pointers.

Uploaded by

Leela Pallava
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPT, PDF, TXT or read online on Scribd
You are on page 1/ 29

9-1 Introduction

A pointer is a constant or variable that contains an


address that can be used to access data. Pointers are
built on the basic concept of pointer constants.

Topics discussed in this section:


Pointer Constants
Pointer Values
Pointer Variables
Accessing Variables Through Pointers
Pointer Declaration and Definition
Declaration versus Redirection
Initialization of Pointer Variables
Computer Science: A Structured Programming Approach Using C 1
Note
An address expression, one of the expression types in the
unary expression category, consists of an ampersand (&)
and a variable name.

Computer Science: A Structured Programming Approach Using C 2


FIGURE 9-4 Print Character Addresses

Computer Science: A Structured Programming Approach Using C 3


Note
A variable’s address is the first byte occupied
by the variable.

Computer Science: A Structured Programming Approach Using C 4


FIGURE 9-5 Integer Constants and Variables

Computer Science: A Structured Programming Approach Using C 5


FIGURE 9-6 Pointer Variable

Computer Science: A Structured Programming Approach Using C 6


FIGURE 9-7 Multiple Pointers to a Variable

Computer Science: A Structured Programming Approach Using C 7


Note
A pointer that points to no variable contains the
special null-pointer constant, NULL.

Computer Science: A Structured Programming Approach Using C 8


Note
An indirect expression, one of the expression types in the
unary expression category, is coded with an
asterisk (*) and an identifier.

Computer Science: A Structured Programming Approach Using C 9


FIGURE 9-8 Accessing Variables Through Pointers

Computer Science: A Structured Programming Approach Using C 10


FIGURE 9-9 Address and Indirection Operators

Computer Science: A Structured Programming Approach Using C 11


FIGURE 9-10 Pointer Variable Declaration

Computer Science: A Structured Programming Approach Using C 12


FIGURE 9-11 Declaring Pointer Variables

Computer Science: A Structured Programming Approach Using C 13


PROGRAM 9-1 Demonstrate Use of Pointers

Computer Science: A Structured Programming Approach Using C 14


PROGRAM 9-1 Demonstrate Use of Pointers

Computer Science: A Structured Programming Approach Using C 15


FIGURE 9-12 Uninitialized Pointers

Computer Science: A Structured Programming Approach Using C 16


FIGURE 9-13 Initializing Pointer Variables

Computer Science: A Structured Programming Approach Using C 17


PROGRAM 9-2 Fun with Pointers

Computer Science: A Structured Programming Approach Using C 18


PROGRAM 9-2 Fun with Pointers

Computer Science: A Structured Programming Approach Using C 19


PROGRAM 9-2 Fun with Pointers

Computer Science: A Structured Programming Approach Using C 20


FIGURE 9-14 Add Two Numbers Using Pointers

Computer Science: A Structured Programming Approach Using C 21


PROGRAM 9-3 Add Two Numbers Using Pointers

Computer Science: A Structured Programming Approach Using C 22


PROGRAM 9-3 Add Two Numbers Using Pointers

Computer Science: A Structured Programming Approach Using C 23


FIGURE 9-15 Demonstrate Pointer Flexibility

Computer Science: A Structured Programming Approach Using C 24


PROGRAM 9-4 Using One Pointer for Many Variables

Computer Science: A Structured Programming Approach Using C 25


PROGRAM 9-4 Using One Pointer for Many Variables

Computer Science: A Structured Programming Approach Using C 26


FIGURE 9-16 One Variable with Many Pointers

Computer Science: A Structured Programming Approach Using C 27


PROGRAM 9-5 Using A Variable with Many Pointers

Computer Science: A Structured Programming Approach Using C 28


PROGRAM 9-5 Using A Variable with Many Pointers

Computer Science: A Structured Programming Approach Using C 29

You might also like