Update cv7/program.c

This commit is contained in:
Yurii Chechur 2024-11-06 07:34:00 +00:00
parent 9a18acc846
commit 46ba20413d

View File

@ -14,7 +14,7 @@ Node* createNode(char *text) {
Node *newNode = (Node*)malloc(sizeof(Node));
if (!newNode) {
printf("Помилка виділення пам'яті.\n");
exit(0);
exit(1);
}
newNode->question_or_answer = strdup(text); // Копіюємо текст у вузол
newNode->yes_branch = NULL;
@ -94,7 +94,7 @@ int main() {
FILE *file = fopen("data.txt", "r");
if (!file) {
printf("Не вдалося відкрити файл бази знань.\n");
return 1;
return 0;
}
// Будуємо дерево знань з файлу