Answer Posted / 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 |
Post New Answer View All Answers
What is overloading in oops?
I have One image (means a group photo ) how to split the faces only from the image?............ please send the answer nagadurgaraju@gmail.com thanks in advace...
What is a class and object?
What is a null tree?
assume the program must insert 4 elements from the key board and then do the following programs.sequential search(search one of the elements),using insertion sort(sort the element) and using selection sort(sort the element).
What is inheritance in oop?
What is constructor in oop?
Whats oop mean?
Can we define a class within the interface?
What is the benefit of oop?
what are the realtime excercises in C++?
What is polymorphism oop?
what are the ways in which a constructors can be called?
What is multilevel inheritance?
What are different types of JVM's? for example we use dalvik jvm for android then what about the remaining operating systems?