Guest User

Untitled

a guest
Jul 3rd, 2017
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.14 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3.  typedef struct node
  4.  {
  5.     bool w;
  6.     struct node *l[27];
  7.  }
  8.  nodea;
  9.  
  10.  nodea* root;
  11.  root->w=false;
  12.  root->l[]={};
Add Comment
Please, Sign In to add comment