nguyentruong98

Untitled

Nov 27th, 2018
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.11 KB | None | 0 0
  1. Queue* makeQueue()
  2. {
  3.       Queue* q;
  4.       q = (Queue *)malloc(sizeof(Queue));
  5.       q.head = NULL;
  6.       return q;
  7. }
Advertisement
Add Comment
Please, Sign In to add comment