What is the difference between shallow copy and deep copy?
A shallow copy constructs a new compound object and then (to the extent possible) inserts references into it to the objects found in the original. A deep copy constructs a new compound object and then, recursively, inserts copies into it of the objects found in the original.
Is This Answer Correct ? | 0 Yes | 0 No |
What is overloading unary operator?
Explain virtual class?
What is a pdb file?
Is there something that we can do in C and not in C++?
Write a C++ Program to Multiply two Numbers
explain the reference variable in c++?
Write my own zero-argument manipulator that should work same as hex?
What is the difference between multiple and multilevel inheritance in c++?
What is #include iostream in c++?
What is the error in the code below and how should it be corrected?
Difference between pointer to constant and constant pointer to a constant. Give example.
write a c++ program that gives output 1 1 2 1 2 3 1 2 3 4 1 2 3 4 5 using looping statement