Part II: Memory Table Exercise Flashcards
1
Q
Memory Address
A
A unique identifier for a memory location in a computer.
2
Q
Dereferencing
A
Accessing the value stored at a pointer’s address using the * operator.
3
Q
Null Pointer
A
A pointer that does not point to any valid memory location, usually set to nullptr in C++.
4
Q
Pointer Arithmetic
A
Performing arithmetic operations on pointers to traverse arrays or memory locations.