1.Start 2. int temp 3.if(front = rear-1) printf("queue underflow") else temp = q[front] print "deleted element",temp front++ 4.Stop