What is the purpose of pointers and address ? Why should I use them and what are they useful for ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

What is the purpose of pointers and address ? Why should I use them and what are they useful for ?

3rd May 2019, 9:03 AM
The unknown 321
The unknown 321 - avatar
2 Answers
0
Pointers are variables that store other variables memory addresses. They allow you work with data on the heap,control how memory is allocated plus you can use them to access low level software like Operating systems or control hardware. They are fun and really powerful features. You can read more about them online.
3rd May 2019, 12:38 PM
Mensch
Mensch - avatar