Can someone please show me how this is done in c++? Write and test a class Custo
ID: 641844 • Letter: C
Question
Can someone please show me how this is done in c++?
Write and test a class Customer
with the following members: private data members: the last_name, first_name and SSN
with constractors that allow you to initialize objects using only data members
Then overload the operator == to compare two objects of the class Customer
Overload the operators << and >> for objects of the class Customer.
In the main function create and populate an array and a doubly linked list of the Customer type objects from a given input file using the overloaded input operator.
call the function print_customer to display data in the array and list using the overloaded output operator.
Explanation / Answer
Account.h
Customer.