#include "ArrayQueue.h" #include using namespace std; int main() { ArrayQueue myQ; for (int i=0; i < 20; i++) myQ.push(i+3); ArrayQueue otherQ(myQ); cout << "here" << endl; cout << myQ.front() << endl; myQ.pop(); cout << myQ.front() << endl; cout << otherQ.front() << endl; }