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
How is class defined?
What is a class in oop?
What is object in oop?
What is protected in oop?
What is destructor example?
What does enum stand for?
What is the purpose of enum?
What is oops with example?
write knight tour problem which is present in datastructure
what is the sylabus for priliminaries?
What is the real time example of encapsulation?
c++ program to swap the objects of two different classes
What is encapsulation selenium?
What is difference between polymorphism and inheritance?
What is Difference Between Inheritance and creating object and getting data? means Class A extends B{ B.getMethod();} (OR) Class A{ b obj=new B(); obj.getMethod(); }