Update a4/program.c

This commit is contained in:
Viktor Daniv 2024-11-24 17:53:39 +00:00
parent e7334f2091
commit 3826e89c1f

View File

@ -44,10 +44,10 @@ int main() {
// Načítanie vstupu
// printf("Zadajte čísla oddelené medzerou: ");
// if (fgets(input, sizeof(input), stdin) == NULL) {
// printf("Chyba pri načítaní vstupu.\n");
// return 1;
// }
if (fgets(input, sizeof(input), stdin) == NULL) {
printf("Chyba pri načítaní vstupu.\n");
return 1;
}
// Odstránenie znaku nového riadku, ak existuje
input[strcspn(input, "\n")] = '\0';