I m getting wrong output.Can u please tell me where I am getting wrong.
Getting all 0 in output
line 31 and line 32 had some error
update the enqueue function and u are good to go
void enqueue(int data)
{
if(!isFull())
{
rear=(rear+1)%ms;
arr[rear]=data;
cs+=1;
}
}
I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.
On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.