Advertisement
Dprogrammed1

data ques 58

Jun 26th, 2019
290
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.09 KB | None | 0 0
  1. struct node
  2. {
  3.     int data;
  4.     struct node * next;
  5. }
  6. typedef struct node NODE;
  7. NODE *ptr;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement