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 |
write a c/c++ program that takes a 5 digit number and calculates 2 power that number and prints it?
How many header files are in c?
What are different types of variables in c?
what is difference between overriding and overloading?
What are the __date__ and __time__ preprocessor commands?
write c program to display output 10(10+20)+(10+20+30)+ ... n term
0 Answers Hindustan Gum Chemicals,
What is wrong with this declaration?
To what value are pointers initialized? 1) NULL 2) Newly allocated memory 3) No action is taken by the compiler to initialize pointers.
What are the key features of C?
What are all different types of pointers in c?
What is function prototype in c language?
write a function which accept two numbers from main() and interchange them using pointers?