Advertisement
BenLarge1

last.c

Apr 5th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.10 KB | None | 0 0
  1. char *last(Node *head)
  2. {
  3. if (head->next == NULL)
  4. return head->name;
  5. return last(head->next);
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement