all about pointers
Answers were Sorted based on User's Feedback
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 |
Why is there no multiple inheritance?
what is the size of an empty class
What is the full form of oops?
what is multithreading in c++ , what is difference between multithreading and singlethreading.
what is the difference between class and structure in C++?
What is pure oop?
Can java compiler skips any statement during compilation time?
What is function overloading and operator overloading?
How is class defined?
what is a class
what is virtual function?
26 Answers Aspire, HP, Infosys, RoboSoft, TCS,
who is the father of OPPS