what is pointers
Answers were Sorted based on User's Feedback
Answer / ramya
pointer is a memory variable that stores the address of the
another variabe
| Is This Answer Correct ? | 55 Yes | 0 No |
Answer / arun
A pointer is a programming language data type whose value
refers directly to (or "points to") another value stored
elsewhere in the computer memory using its address.A pointer
references a location in memory, and obtaining the value at
the location a pointer refers to is known as dereferencing
the pointer.
| Is This Answer Correct ? | 21 Yes | 5 No |
Answer / umashankar mishra
pointer is a variable which is used to store the adress of
another variable
syntax:
int *ptr
* symbole is used to defined the pointer
| Is This Answer Correct ? | 8 Yes | 0 No |
Answer / p.madhupriya
pointer is a variable that points to address of another variable
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / durgesh jaiswal
pointer is a memory variable which holds the address of another variable.........
syntax-*ptr
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / backiya
pointer is a memory variable...
it's stored address in another new variable
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / ramesh bhumarapu
Pointer is a Reference Variable...
which contains address of another variables
| Is This Answer Correct ? | 0 Yes | 0 No |
What are the important components of cohesion?
why freind function takes more parameter than normal member function in c++?
diff between Abstract class Interfaces?
What is overloading in oops?
What is the main difference between C++ and Java
What is polymorphism ? Explain with examples
diff between Virtual mathod and abstract method?
WAP find square root of any number (without using sqrt() )?
What is and I oop mean?
What is ambiguity in inheritance?
What is object in oop?
Can static class have constructor?