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 |
What does catch(…) mean?
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.
Define 'std'.
Show the application of a dynamic array with the help of an example.
What are c++ variables?
Define macro.
What is the hardest coding language to learn?
Why iomanip is used in c++?
What is long in c++?
What is an undefined behavior and sequence points
When can I use a forward declaration?
What is functions syntax in c++?