diff --git a/cv7/program.c b/cv7/program.c index eaa3f7e..006e273 100644 --- a/cv7/program.c +++ b/cv7/program.c @@ -50,7 +50,9 @@ int count_products(Node *node) { void run_expert_system(Node *node) { while (node) { if (!node->yes && !node->no) { - printf("Expert z bufetu to vie: %s.\n", node->text); + printf("Expert z bufetu to vie.\n"); + printf("*%s\n", node->text); + printf("Koniec\n"); return; } printf("%s\n", node->text);