nguyentruong98

Untitled

Dec 7th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.10 KB | None | 0 0
  1. void printfnode(Node *p)
  2. {
  3.       if (p == NULL)
  4.             return;
  5.       printf("%d\n", p->vertex);
  6. }
Advertisement
Add Comment
Please, Sign In to add comment