This commit is contained in:
Tančáková 2024-03-22 08:40:47 +01:00
parent 27e4a5b026
commit 5423e79f36

View File

@ -31,12 +31,12 @@ int read_students(struct Student students[], int max_students) {
char name[MAX_SIZE]; char name[MAX_SIZE];
int votes; int votes;
// Načítame počet hlasov // Načítame počet hlasov
votes = (int)strtol(line, &line, 10); char *endptr;
votes = (int)strtol(line, &endptr, 10);
// Preskočíme medzeru // Preskočíme medzeru
line++; endptr++;
// Načítame meno študenta // Načítame meno študenta
memcpy(name, line, strlen(line) - 1); // Odstránime znak nového riadka strcpy(name, endptr);
name[strlen(line) - 1] = '\0'; // Nastavíme koniec reťazca
// Prejdeme všetkých študentov a ak nájdeme rovnaké meno, pripočítame hlasy // Prejdeme všetkých študentov a ak nájdeme rovnaké meno, pripočítame hlasy
int found = 0; int found = 0;
for (int i = 0; i < num_students; i++) { for (int i = 0; i < num_students; i++) {