Write a C++ program in which youare required to define a class named Account . T
ID: 3614983 • Letter: W
Question
Write a C++ program in which youare required to define a class named Account. Theclass must include the following two data members.
// data member for accountholder’s name
1: Account_Holder
//data member for amount in the account
2:Amount
Your Program should definethree constructors for the class Account
1: a constructor with noparameter
2: a constructor with twoparameters (Account_Holder, Amount)
3: a copyconstructor
All of these threeconstructors are meant to initialize their respective objects.Incase of copy constructor, you are required to assign a separatespace for the data members of the new object while copying thevalues of previously existed object.
Declare three objects (1for each type of constructor) in main.
Write a function in classAccount to display the initialized data members for eachobject.
Also write destructor for the class Account. Display amessage that says “destructor called” in the destructorbody.
Note: you can do better by making your variable names moremeaningful. Adding proper comments and indenting your codeproperly.
OUTPUT
Your output should be similar to thefollowing
Ahsan
15000
_________________
Umar
70000
_________________
Qasim
19000
help me