pointer C++

int X,Y

* (dat->Data + X + ( long ) Y *dat->Cols =
* (FILTER->DATA + X + (long ) Y
* dat->Cols )

I am having trouble to understand to following Code. What the pointers for ?
And what are the use of these ?
Can You Please Explain ?

Can you break it down and explain for me ?
Last edited on
pointers point at the actual address of the variable you are pointing at.
when you declare a variable you give it space in memory and it goes to something called the stack. you can see exactly where in memory your variable is with pointers.- you should have a quick google search it will make sense with examples (easier ones then what you have)

What in my code if we break down and what about pointer in my code ?
Anyone help please??
Topic archived. No new replies allowed.