0
What is a pointer in c++
what is a pointer because I couldn't understand
5 Respuestas
+ 1
https://www.sololearn.com/learn/1416/?ref=app
This is a pretty sttaightforward one in C
+ 2
Pointer is a special type of variable which holds the memory address of another variable .. The " Address " is the location of the variable in the memory ,
ex -
int *point=&a
+ 1
A pointer points to the memory allocation of a variable. I know it can be confusing. It took me a while to understand too. I recommend keep doing exercises with pointers and it will start clicking
+ 1
can u give me some examples