This commit is contained in:
Bohdan Kapliuk 2024-11-11 14:18:18 +02:00
parent 9b60c5a968
commit 6c44c29d69

View File

@ -58,7 +58,7 @@ void print_tree(struct tree* tree,int offset){
} else if (r == 'n') {
print_tree(tree->right, offset + 3);
} else {
printf("CHYBOVY VSTUP!\n");
printf("Nerozumiem\n");
exit(0);
}
}