what is a pointer
Answers were Sorted based on User's Feedback
Answer / chaitali anand tendulkar
A pointer is a variable which contains a address in memory
of another variable. in other words it is a address of
variable.
| Is This Answer Correct ? | 27 Yes | 2 No |
Answer / roshan
In a simple word.....
A pointer is a variable which is store the address of another variable.
| Is This Answer Correct ? | 11 Yes | 1 No |
Answer / anil yadav
A pointer is a variable which contains the address in memory of another variable. We can have a pointer to any variable type....
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / joshi
Pointer is a special variable which hold the address of the
next variable.
| Is This Answer Correct ? | 3 Yes | 2 No |
How can I dynamically allocate arrays?
What is double pointer?
What is the difference between malloc() and realloc()?
What is pointer to pointer in c language?
Explain about C function prototype?
List the difference between a "copy constructor" and a "assignment operator"?
EXPLAIN #INCLUDE<STDIO.H> EXPLAIN #INCLUDE<CONIO.H>
sum of two integers values only other then integer it should print invalid input.
What is Full Form of C and Why We use C
Explain the difference between ++u and u++?
write a program to display the numbers in the following format 4 4 3 3 3 3 2 2 2 2 2 2 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 2 2 2 2 2 3 3 3 4
How pointer is benefit for design a data structure algorithm?