Hi! For the Enqueue function part, im not so sure on how to insert a new customer into the queue.
Here is the part of the question for more clarification.
-queue’s member length represents the number of customers in the queue, and these customers take the place (index) of 0 to length-1 of queue’s member CustomerList.*/
-If queue is not full (think how you know whether the queue is full or not), insert cus to the tail of the queue (that is, the place (or index) length of queue’s member CustomerList, CustomerList[length]) and update the number of customers in the queue; otherwise, print out ”the queue is full”.
I posted what i have so far, its wrong and keeps giving me an error "no operator == matches these operand.