Update cv7/program.c

This commit is contained in:
Marat Izmailov 2024-11-13 22:50:45 +00:00
parent 201846cfd9
commit 62eb405625

View File

@ -50,7 +50,8 @@ void queryUser(Node* node) {
if (node == NULL) return; if (node == NULL) return;
if (node->yes == NULL && node->no == NULL) { if (node->yes == NULL && node->no == NULL) {
printf("Expert z bufetu to vie. Je to: %s\n", node->text); printf("Expert z bufetu to vie.\n");
printf("Je to: %s\n", node->text);
printf("Koniec\n"); printf("Koniec\n");
return; return;
} }