This commit is contained in:
Damián Korpesio 2021-11-25 10:58:00 +01:00
parent 1918a0f4f5
commit 756e486c6c

View File

@ -1,7 +1,7 @@
#include<stdio.h> #include<stdio.h>
#include<stdlib.h> #include<stdlib.h>
#include<string.h> #include<string.h>
#define SIZE 100 #define SIZE 50
struct tree{ struct tree{
char question[SIZE]; char question[SIZE];
struct tree* left; struct tree* left;
@ -36,7 +36,7 @@ int main(){
system_execute(root); system_execute(root);
getchar(); getchar();
printf("Koniec"); printf("Koniec\n");
destroy_tree(root); destroy_tree(root);