This commit is contained in:
Jana Kapalková 2026-04-16 13:35:43 +02:00
parent d3d9dd7ab6
commit 3439976ef7

View File

@ -60,7 +60,7 @@ void run_system(struct Node* node) {
} else if (strcmp(answer, "n") == 0) { } else if (strcmp(answer, "n") == 0) {
run_system(node->right); run_system(node->right);
} else { } else {
return; printf("Nerozumiem\n");
} }
} }