vs code je somarina

This commit is contained in:
Valér Jakubčo 2021-11-26 03:52:05 +01:00
parent 37133147fb
commit 052f0216b1

View File

@ -65,11 +65,11 @@ void ask(struct node* tree){
}
while(r[0] == '\n'){
r = fgets(buff, SIZE, stdin);
}
if(r == NULL){
puts("Koniec vstupu");
return;
}
}
if(r[0] == 'a' && tree->left != NULL){
tree = tree->left;
ask(tree);