Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- struct node
- {
- char data;
- struct node* dot;
- struct node* dach;
- };
- int main()
- {
- struct node Code4 = {'4',NULL,NULL};
- struct node Code5 = {'5',NULL,NULL};
- struct node H = {'H',&Code5,&Code4};
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement