0
How i use pointers in C++
2 Answers
+ 4
pointerz are used to reference memory.
many uses
1) to know the address of where the variable is stored
2) change values out of scope without having to decalre temporary variables.
3) have dynamic memory
4) reference objects and variables to do the above.
+ 1
thanks