|
|
|
@ -7,27 +7,6 @@
|
|
|
|
|
Application de gestion des candidature dans les IUT de France
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#define LEN_MAX 30
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//STRUCTURES
|
|
|
|
|
typedef struct {
|
|
|
|
|
char ville[LEN_MAX], departement[LEN_MAX];
|
|
|
|
|
int decision, validation;
|
|
|
|
|
} Candidature;
|
|
|
|
|
|
|
|
|
|
typedef Candidature** ListeCandidatures;
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
|
int id;
|
|
|
|
|
char nom[LEN_MAX], prenom[LEN_MAX];
|
|
|
|
|
float moyenneMath, moyenneFrancais, moyenneAnglais, moyenneSpecialite;
|
|
|
|
|
int nbCandidatures;
|
|
|
|
|
ListeCandidatures listeCandidatures;
|
|
|
|
|
} Candidat;
|
|
|
|
|
|
|
|
|
|
typedef Candidat** ListeCandidats;
|
|
|
|
|
|
|
|
|
|
//FONCTIONS ET DOCUMENTATION
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|