Search in: Word
Vietnamese keyboard: Off
Virtual keyboard: Show
Computing (FOLDOC) dictionary
dangling pointer
Jump to user comments
programming A reference that doesn't actually lead anywhere.
In C and some other languages, a pointer that doesn't
actually point at anything valid. Usually this happens
because it formerly pointed to something that has moved or
disappeared, e.g. a heap-allocated block which has been freed
and reused.