This commit is contained in:
Maksym Kovalchuk 2026-04-16 15:01:54 +00:00
parent 5a1a4a1fc0
commit 938139fdee

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;
}