I am trying to print my queue which has values in it.
Right now i have this.
for(int i = 1; i<ReadyQueue.size(); i++)
{
}
But i am stuck now because i have no idea how to print a queue without popping it off the front. So now i am stuck.
How do I print a queue without emptying it? This is my queue
queue<int> ReadyQueue;