| |
| |
Data pointer - Wikipedia, the free encyclopedia |
 | | Null pointers are used routinely, particularly in C and C++, to represent exceptional conditions such as the lack of a successor to the last element of a linked list, while maintaining a consistent structure for the list nodes. |
 | | Pointer arithmetic, that is, the ability to modify a pointer's target address with arithmetic operations, is unrestricted: adding or subtracting from a pointer moves it by a multiple of the size of the datatype it points to. |
 | | Pointer arithmetic is unrestricted; adding or subtracting from a pointer moves it by that number of bytes in either direction, but using the Inc or Dec standard procedures on it moves it by the size of the datatype it is declared to point to. |
| en.wikipedia.org /wiki/Pointer (3014 words) |
|