"Peter van Merkerk" <merkerk@deadspam.com> wrote in message news:<bh7vm1$vkjhg$1@ID-133164.news.uni-berlin.de>...[color=blue][color=green]
> > Here's my question: "Why are pointers so useful and why can't you just[/color]
> work[color=green]
> > with variables?"[/color]
>
> You need pointers for example to be able to build dynamic data
> structures. I cannot think of any non-trivial application that doesn't
> directly or indirectly uses pointers. So yes, you should learn about
> pointers; it not only required knowledge for C++ programmers, but the
> same concept is also used in many other programming languages.
>
> However the best place to find answers for your question is a good book.
> Usenet is not the ideal medium to explain general topics like pointers.
> For book reviews see :
www.accu.org.[/color]
Pointers are required to address memory-mapped I/O and to index
variables in an array.
Bill Hanna