Advertisement
Guest User

Untitled

a guest
Oct 21st, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. struct node
  2. {
  3. int data;
  4. struct node *next;
  5. }*head;
  6. .
  7. .
  8. .
  9. int main()
  10. {
  11. int i,num;
  12. struct node *n;
  13. head = NULL;
  14. ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement