From 61da233c084832fdb77f5e18e7b7ad22739a990a Mon Sep 17 00:00:00 2001 From: Bohdan Kapliuk Date: Thu, 14 Nov 2024 14:43:39 +0200 Subject: [PATCH] cv7 --- cv7/program.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/cv7/program.c b/cv7/program.c index 7a5e98e..f995674 100644 --- a/cv7/program.c +++ b/cv7/program.c @@ -55,10 +55,8 @@ void print_tree(struct tree* tree) { print_tree(tree->right); } else if (r == EOF) { printf("Koniec vstupu\n"); - }else if (r == NULL) { - printf("GOVNO\n"); - } else { - printf("Nerozumiem\n"); + }else { + //printf("Nerozumiem\n"); exit(0); } }