First: * I know what pointers are! *,
But,
I'm looking for a really good definition of them, one that is concise, simple, easy to understand, a "aha definition" something that will make someone with basic or more grasp of programming understand what pointers are.
I know pointers are generally hard to explain that's why I've asked this question, as it seems a pretty hard task for me to explain pointers so that the other end "gets it".
My simplest definition I could come up with is:
"a pointer is a integer number, that represents a memory address, and which is stored in a memory location (memory is used generically here: ram, registers ...)".
But this doesn't relate very well with programming languages.
P.S. Quotes from your favorite books/articles are welcome, but I'd appreciate a link to the original author.
P.S.2 Definitions in the scope of C/C++ are also welcome ;)
DUPLICATE: See In C++ I cannot Grasp Pointers and Classes and Understanding Pointers
