Possibly misunderstanding the "Queue management system" question
This is the code project in "Classes and Objects" in the C++ course. I feel I am misunderstanding the question, because as it is laid out it doesn't quite make sense to me. The question is: You are working on a Queue management system and need to create the class to hold the queue data, which are customer IDs (integers). You make a Queue class, which has a size attribute, and an array, to hold the data of the queue. The class has a remove() method to remove the front item of the queue, a print() method to output the queue. You need to create an add() method for the Queue class, that will take an item and add it to the end of the queue. The code needs to be fully working, so that the Queue declaration and manipulation code in main() works But the queue variable supplied is an array. I feel it would make more sense if it was a vector, if you want to remove items and tack numbers onto the end? I thought arrays were immutable in C++? Which version of C++ is used in the course? I am feeling a bit confused. Am I supposed to change the array to a vector?