Queue operations C++

  1. Enqueue: This operation adds an element to the end of the queue.
  2. Dequeue: This operation removes the element from the front of the queue.
  3. Front: This operation returns the element at the front of the queue without removing it.
  4. Empty: This operation checks if the queue is empty.
  5. Size: This operation returns the number of elements in the queue.