Update 'cv8/program.c'

This commit is contained in:
Anzhelika Nikolaieva 2023-11-24 20:52:48 +00:00
parent 890c93c379
commit f02069df8f

View File

@ -50,7 +50,7 @@ void destroy_tree(struct tree* tree) {
void print_tree(struct tree* tree, int offset) {
for (int i = 0; i < offset; i++) {
printf(" ");
//printf(" ");
}
printf("%s", tree->v);
if (tree->left) {