This commit is contained in:
Maksym Kovalchuk 2026-04-16 14:55:23 +00:00
parent f94f78c710
commit 721c7c7676

View File

@ -79,7 +79,7 @@ void start(Tree *node) {
while (node != NULL) {
if (node->isAnswer) {
printf("* %s\n", node->text);
printf("*%s\n", node->text);
printf("Koniec\n");
return;
}