|
|
|
@ -109,7 +109,7 @@ int chargerCandidats(Etudiant *tetud[])
|
|
|
|
|
exit(1);
|
|
|
|
|
}
|
|
|
|
|
fscanf(file, "%d", &nbCandidats);
|
|
|
|
|
while (i < nbCandidats - 1)
|
|
|
|
|
while (i < nbCandidats)
|
|
|
|
|
{
|
|
|
|
|
tetud[i] = (Etudiant *)malloc(sizeof(Etudiant));
|
|
|
|
|
if (tetud[i] == NULL)
|
|
|
|
@ -131,7 +131,7 @@ int chargerCandidats(Etudiant *tetud[])
|
|
|
|
|
}
|
|
|
|
|
i++;
|
|
|
|
|
}
|
|
|
|
|
return i + 1;
|
|
|
|
|
return i;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// void sauvegarderCandidats(ListeAdmission la, char dptResAdmi[30])
|
|
|
|
|