What is the difference between reference type and pointers.
Answer Posted / p.madhupriya
pointer is a variable that points to address of another
variable .
reference is variable that points to address of that
variable only.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What do you mean by a template?
What is const in c++?
Explain the advantages of using friend classes.
What is a manipulator in c++?
What is a static element?
What is ifstream c++?
What is operators in c++?
Is arr and &arr are same expression for an array?
Explain shallow copy?
What sorting algorithm does c++ use?
What does flush do?
How do you compile the source code with your compiler?
What is the best c++ book?
What do you mean by translation unit?
Evaluate as true or false: !(1 &&0 || !1) a) True b) False c) Invalid statement