Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2015
248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.22 KB | None | 0 0
  1. struct node
  2. {
  3.     char data;
  4.     struct node* dot;
  5.     struct node* dach;
  6. };
  7.  
  8. int main()
  9. {
  10.     struct node Code4 = {'4',NULL,NULL};
  11.     struct node Code5 = {'5',NULL,NULL};
  12.     struct node H = {'H',&Code5,&Code4};
  13.     return 0;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement