Task 1:
Implement theconstructor for the Hostess struct. It mustinitialize all member variables, including any arrays. There isanother function that performs initialization. You must change theprogram so that the object’s initialization is done automatically,i.e. no explicit call is needed for an initialization function.
#ifndef HOSTESS_H#define HOSTESS_H#include \"Table.h\"#include struct Hostess{ void Init(); void PlaceArrivalInQueue(int arrivals); void ShiftLeft(); void Print(int hour, int minute, int arrivals); int GetNumTables(){return numTables;} int Seat(int table, int time); int CheckAvail(); int totalServed; int currentCustomers; int queue_size; int numTables; Table tables[30]; int queue[15];};#endif // HOSTESS_H