CH_10_Pointers Flashcards
1
Q
Pointer
A
The address of a memory location.
A value that represents the address of a memory location, or holds the address of some variable.
2
Q
Address Operator (&)
A
Can be used to retrieve the address of any variable.
3
Q
Pointer Variable
A
A variable that holds addresses of memory locations. Often referred to as just a pointer.
4
Q
Indirection Operator
A