0
What is the interpretation of the output of the following code?
3 Respuestas
+ 3
~Cpp() is destructor
Cpp() and Cpp(string n) are construsctors
Destructors happen when you delete an object
Constructors are ways you can make an object
+ 2
here u created three constructors which name is Cpp and constructor will execute while object creation so first your default constructor will be call then u have written one parameterized constructor and u haven't called anywhere that's why it won't be printed on the screen after that's destructor will be executed.