This commit is contained in:
Macko 2024-04-15 22:13:50 +02:00
parent c57ab4e5bd
commit 6193855475

View File

@ -42,10 +42,8 @@ int main() {
// Výpis prijatých a neprijatých študentov
int max_students;
if (scanf("%d\n", &max_students) != 1) {
fprintf(stderr, "Error reading the maximum number of students\n");
return 1;
}
fgets(line, SIZE, stdin);
sscanf(line, "%d", &max_students);
printf("Prijati studenti:\n");
for (int i = 0; i < max_students && i < pocet_mien_v_poli; i++) {