0_0_19717634_6209.c: In function 'newNode':
0_0_19717634_6209.c:13:48: error: 'Node' undeclared (first use in this function)
struct Node* p = (struct Node*)malloc(sizeof(Node));
^
0_0_19717634_6209.c:13:48: note: each undeclared identifier is reported only once for each function it appears in
0_0_19717634_6209.c:15:3: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for(int i=0;i<26;i++)
^
0_0_19717634_6209.c:15:3: note: use option -std=c99, -std=gnu99, -std=c11 or -std=gnu11 to compile your code
0_0_19717634_6209.c: At top level:
0_0_19717634_6209.c:20:1: error: initializer element is not constant
TrieNode* root=newNode(0);
^
0_0_19717634_6209.c: In function 'Insert':
0_0_19717634_6209.c:28:3: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for(int i=0;i<strlen(s);i++)
^
0_0_19717634_6209.c: In function 'Find':
0_0_19717634_6209.c:45:3: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for(int i=0;i<strlen(s);i++)
^
|