Hi Guys
I was doing some reading up on data structures to refresh my memory when I came across the following:
pmovie->title
*pmovie.title
source: http://www.cplusplus.com/doc/tutorial/structures/
pmovie is pointing to an instant of a struct. I know the arrow operator is a dereference operator for objects and I thought *pmovie.title was exactly the same thing but it isnt. So whats the difference between the two?