I thought i grasped pointers, but when i go to actually use them, low and behold, apparently i do not. I was trying to understand the difference of reference and pointers, and the purpose behind them as obviously references are easier to comprehend and use.
aaah, ok. Thanks, i will have to remember that when using the inc/dec operators. Wouldnt it just be simpler to say: *n += 1;?
OK in this situation, why would you use pointers? As its more complicated, more syntax required, more error prone? When reference is just one extra syntax required and does it at the same speed without copying?