04 Pointers and Arrays
04 Pointers and Arrays
C Foundation
is a
pointer
to an
int
pointers
a wibble!
sharing
wibble*
wibble*
wibble*
&
p1
&
p2
&
another
null pointer
int * top_level; void eg(void) { int * local; static int * one; ... }
implicit static storage class, defaults to null implicit auto storage class, no default explicit static storage class, defaults to 0
pointer true/false
equivalent
equivalent
address-of/dereference
unary & operator returns a pointer to its operand unary * operator dereferences a pointer
& and * are inverses of each other: *&x == x *p is undefined if p is invalid or null
int variable = 42; ... int * pointer = &variable; ... int copy = *pointer;
int 42 variable
int 42 copy
pointer fn arguments
#include <stdio.h> void swap(int * lhs, int * rhs) { int temp = *lhs; *lhs = *rhs; *rhs = temp; } int main(void) { int a = 4; int b = 2; printf("%d,%d\n", a, b); swap(&a, &b); printf("%d,%d\n", a, b); }
arrays
int int int int int int int int int int
int int
array initialization
1. 2.
10
designators
c99
11
array indexing
int days_in_month[12];
printf("%d", days_in_month[january]);
12
pointers == arrays
void display(size_t size, wibble * first); void display(size_t size, wibble first[]); wibble table[42] = { ... };
these two statements are equivalent
13
#include <stdio.h> int main(void) { int array[] = { 0,1,2,3 }; int clone[] = { 0,1,2,3 }; puts(array == clone ? "same" : "different"); return 0; }
exercise
14
array literal
&
0 1 4 9 16 25 36
c99
15
pointer arithmetic
[0] [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11]
x m
m x
== ==
4 -4
m = &array[5];
x = &array[9];
16
pointers == arrays
dereference equivalent
pointer arithmetic
array[n]
*(array + n)
? ?
equivalent
&array[n]
17
array[42]
array + 42 &array[42]
int * search(int * begin, int * end, int find) { int * at = begin; while (at != end && *at != find) { at++; } return at; }
18
pointers != arrays
&
[0] [1]
[2] [3]
19
syntax
20
pointer confusion
21
const + pointer
int value = 0;
22
const + pointer
int value = 0;
const int * const ptr = &value; *ptr = 42; // error ptr = NULL; // error
23
string literals
equivalent to
char greeting[] = { 'B', 'o', 'n', 'j', 'o', 'u', 'r', '\0' };
24
string manipulation
25
void*
26
int pointer
c99
27
restrict
// ok // undefined-behaviour
c99
28
dynamic memory can be requested using malloc() and released using free()
both functions live in <stdlib.h> one way to create arrays whose size is not a compile-time constant
#include <stdlib.h> void dynamic(int n) { void * raw = malloc(sizeof(int) * n); if (raw != NULL) { int * cooked = (int *)raw; cooked[42] = 99; ... free(raw); } } see also calloc, realloc
dynamic memory
29
summary
30
{ JSL }
Jon Jagger
Contact
jon@ jaggersoft.com www.jaggersoft.com