All of these three constructors are meant to initialize their respective objects. Incase of copy constructor, you are required to assign a separate space for the data members of the new object while copying the values of previously existed object.
Declare three objects (1 for each type of constructor) in main.
Write a function in class Citizen to display the initialized data members for each object.
Also write destructor for the class Citizen. Display a message that says "destructor called" in the destructor body.