+ 21
What will the best suitable definition for pointer in c ?
pointer function in C.
17 Respuestas
+ 14
A pointer is a derived data type that refers to another data variable by storing the variable's memory address rather than data.
+ 7
Address of a variable
+ 7
Pointer is a variable which stores address of another variable
+ 5
A variable that can store address of another normal varible.
+ 4
The location of data on the heap for address on the stack 🤗
+ 3
A variable which stores a address of another variable is known as pointer...
+ 3
A pointer is a variable that holds the address to another variable.
Let's say I'm looking for Mr A (a variable), and Mr A stored his address in a book (the pointer), I can always refer to the book when ever I'm looking for Mr A or his address.
+ 3
A pointer is a variable that stores the address of another variable. Unlike other variables that hold values of a certain type, pointer holds the address of a variable. For example, an integer variable holds (or you can say stores) an integer value, however an integer pointer holds the address of a integer variable. if you know more about this visit http://pythonandmltrainingcourses.com/best-summer-training-in-noida/
+ 3
Pointer is a variable,that store the address of another variable
+ 2
pointer is a variable which store address of another variable.
+ 2
The simplest way to put it, is that it is a specific path for a variable (from my understanding)
+ 1
pointer is a data type to point the value i.e memory address
+ 1
pointer is a special type of variable that can hold the address of another variaable
+ 1
A variable which store the address of another variable
+ 1
I would say your home address.
0
Pointer is a variable.that variable stores in a address of another variable.
*P=&a