From 9d6d5a897b25251027f3846d2e11b6b00b187d9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jana=20Kapalkov=C3=A1?= Date: Thu, 16 Apr 2026 14:09:44 +0200 Subject: [PATCH] commit --- du5/program.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/du5/program.c b/du5/program.c index 4a0f49e..85e7e63 100644 --- a/du5/program.c +++ b/du5/program.c @@ -47,7 +47,7 @@ void run_system(struct Node* node) { if (node == NULL) return; printf("%s", node->value); if (node->left == NULL && node->right == NULL) { - printf("Koniec vstupu\n"); + printf("Koniec\n"); return; } char answer[SIZE]; @@ -80,5 +80,6 @@ int main(void) { run_system(root); destroy_tree(root); + return 0; } \ No newline at end of file