Jump to content

Pointer (computer programming)

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by BlckKnght (talk | contribs) at 22:32, 30 September 2001 (initial entry). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

A Pointer is a common data type in computer programming. It holds the memory address of another element in the program, or a null value. Some programming languages do not allow direct use of pointers, but instead use references. Pointers are often used to hold the base address of arrays and to make links between nodes in trees and linked lists.