Quote (lopelurag @ Sep 18 2012 08:50pm)
Yeah ok I can see how they'd be important with linked lists, we just started learning about them.
In all the examples we've been shown we haven't really delved into WHY they are useful, just how to reference and dereference them.
So they just point to a location allocated in memory?
Could be the class you are in. Unless you are utilizing/learning something which NEEDS pointers, they obviously won't seem important at the moment

just wait a bit
edit:
pointers contain the address (location) of some kind of data type. (in memory yes)
Could be an int, could even be a struct.
By deref, you can access the value of the address that the pointer points to.
This post was edited by Eep on Sep 18 2012 07:54pm