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
Can enum be null?
What causes polymorphism?
Why is object oriented programming so hard?
just right the logic of it 1--> If few people are electing then every time ur candidate should win 2--> arrange books in box, if box carry weight == books weight then take another box..... find the no of box required.
Why do we use polymorphism?
What is a superclass in oop?
What is encapsulation with example?
hi all..i want to know oops concepts clearly can any1 explain??
What is the purpose of polymorphism?
Write a program to sort the number with different sorts in one program ??
Why is polymorphism needed?
What do you mean by overloading?
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(); }
What is the importance of oop?
Is react oop?