+ 3
What are pointers?
is it necessary to learn pointers ?
6 Respostas
+ 3
pointers are variable which hold address of another variable.
yes you should learn pointer, many time you will have to deal with address when you read some advance level things.
for basic level you can manage without pointer but to be good programmer. .you should know it
+ 1
pointer is a type of variable
it store only the address of other variable
+ 1
As per the other answers it points to the specific address of the variable in the stack or heap. This reduces duplication of variables and values is my understanding as to why we use it.
0
It helps to read the variables within the memory address and the amendment to its value
0
pointer is a one type of variable..but it store only the address of other variable..we can not store value in pointer like other variable..