Advertisement
Void-voiD

Untitled

Dec 15th, 2018
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. int Dequeue(struct Queue q)
  2. {
  3. if (QueueEmpty(q)) printf("NULL\n");
  4. int x = q.data[q.head];
  5. q.head++;
  6. if (q.head == q.cap) q.head = 0;
  7. q.count--;
  8. return x;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement