Section 11.5 Word Matching Exercise

Pointer
double* p
*p
int* p1, p2
int *p1, *p2
typedef t1 t2
is to declare a pointer variable p1 and an pointer variable p2.
is a variable that stores the memory address.
is to declare a pointer variable p that holds a memory address for a double value.
is to declare a pointer variable p1 and an int variable p2.
is to define a new type t2 that is the same as t1.
is to retrieve the value stored at the memory pointed by variable p.