Are pointer variables used to declare pointers let me know if I am correct | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Are pointer variables used to declare pointers let me know if I am correct

30th May 2020, 6:09 AM
Emmanuel Abraham
2 Answers
0
Why you so confused its really simple. Its your 3rd question on the same title. See, A pointer is a variable whose work is to point on a address inside the memory. During execution of a program each variable, function is allocated some memory address inside RAM and with pointer you can access to that memory address with the help of pointer and can make changes to the value associated to that memory address if you want. PM me for personal help. I will be happy to help you out with pointers.
31st May 2020, 10:16 AM
Robin Singh
Robin Singh - avatar
+ 2
Can be used , Like int *x; int **y; int c; x=&c; y=&x;
30th May 2020, 6:24 AM
Raj Kalash Tiwari
Raj Kalash Tiwari - avatar