#include using namespace std; int queue[10]; int front=0; int rear=0; int count=0; void push(int x) { if(count==10) { cout<<"\nOverflow"; } else { queue[rear]=x; rear=(rear+1)%10; count++; } } void pop() { if (front==rear) { cout<<"\nUnderflow"; } else { cout<<"\n"<>ch; if (ch==1) { cout<<"\nInsert : "; cin>>x; push(x); } else if (ch==2) { pop(); } else if (ch==3) { show(); } } while(ch!=0); return 0; }