// CircularQueue #include using namespace std; class Queue { int *arr; int n; int cs; int f; int e; public: Queue(int s = 5){ cs = 0; arr = new int[s]; //Dynamically declare n = s; f = 0; e = s-1; } void push(int d){ if(cs == n){ cout<<"Queue overflow"<