This commit is contained in:
Bohdan Kapliuk 2024-11-11 14:34:22 +02:00
parent 0b7175626f
commit 3c5797d09b

View File

@ -47,7 +47,7 @@ void print_tree(struct tree* tree, int offset) {
}
printf("%s", tree->value);
if (tree->value[0] == '*') {
printf("Koniec vstupu\n");
printf("Koniec\n");
return;
}
char r = getchar();