all about pointers

Answers were Sorted based on User's Feedback



all about pointers..

Answer / ps

Pointers are variables which hold the address of other
variables.
int i = 10;
int *a = &i;
i = 20;

where a will store the address of variable i and *a will
have the value of i.


There are different types of pointers in C++:
Null pointers
Void pointers
Wild pointers
this pointers

Is This Answer Correct ?    3 Yes 0 No

all about pointers..

Answer / immanuel

it refers to the location or address of any other variable.
Pointer is denoted by * and the address is denoted by &

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More OOPS Interview Questions

explain the concepts of oops?

1 Answers  


What is abstraction in oop with example?

0 Answers  


If a=5, b=6, c=7, b+=a%c*2. What is the final value of b?

0 Answers  


What does sksksk mean in text slang?

0 Answers  


how to tackle technical questions

1 Answers  






who is the father of OPPS

4 Answers   Infosys, TCS,


Please send ford technologies placement paper 2 my mail id

0 Answers  


What is coupling in oops?

0 Answers  


how many types of notations are in java

1 Answers   National University of Modern Languages (NUML),


Which method cannot be overridden?

0 Answers  


What is oops in simple words?

0 Answers  


What is abstraction in oop?

0 Answers  


Categories