Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

The program should support statements of the kind : int main() { addressBookType

ID: 3550510 • Letter: T

Question

The program should support statements of the kind :

int main()

{


addressBookType addressList(500);

addressList.load();

addressList.searchByLastName("Balto");


cout<<" Printing infomation of a given person :"<<endl;

addressList.printperson("Bashfull","Bash" );

cout<<" Birthday between two dates :"<<endl;

addressList.bithdaysBetweenOrMonth("2 8 1964 ","10 6 1981 ",2);


cout<<" People with Status Family"<<endl;

addressList.printAllOfStatus("Family");

addressList.printBetweem("Malik","Bashfull");


return 0;

}



/*--------------------------------------------------------------------------- Input File ----------------------------------------------------------------------------


Explanation / Answer

What-EVER!