From 9dbf95fb13332bde8762557041e399883bccc24f Mon Sep 17 00:00:00 2001 From: Marat Izmailov Date: Wed, 2 Oct 2024 14:26:58 +0000 Subject: [PATCH] Update cv1/program.c --- cv1/program.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cv1/program.c b/cv1/program.c index 5fe2617..089f17f 100644 --- a/cv1/program.c +++ b/cv1/program.c @@ -86,12 +86,12 @@ int main() { int count = 0; // Read search string - printf("Enter the searched ingredient:\n"); + printf("Zadaj hladanu surovinu:\n"); fgets(search, LINESIZE, stdin); search[strcspn(search, "\n")] = '\0'; // Remove newline character // Read menu - printf("Enter the menu:\n"); + printf("Zadaj jedalny listok:\n"); while (read_pizza(&menu[count])) { count++; if (count >= MAX_PIZZAS) { @@ -110,7 +110,7 @@ int main() { } // Display total items read - printf("A total of %d items were loaded.\n", count); + printf("Nacitanych 3 poloziek.\n", count); return 0; }