differance between copy & clon
Answer / vaibhav darji
copy(): it will copy the structure of data and data also.
clone(): it will copy the structure of data only.
| Is This Answer Correct ? | 6 Yes | 0 No |
Why is c++ called oops?
What does ctime() do?
What is a dangling pointer?
What is the operator in c++?
How does java differ from c and c++?
What is the size of a vector?
They will ask u question about single linked list?. Write Code for to insert delete node.
class Foo { const int x; protected: Foo(int f); ~Foo(); }; Foo f; Referring to the sample code above, why will the class declaration not compile? a) The variable x is const. b) The destructor is protected. c) The destructor is not public. d) The constructor is protected. e) There is no default constructor.
Differentiate between declaration and definition in C++?
Is c++ used anymore?
How do you sort a sort function in c++ to sort in descending order?
When can I use a forward declaration?