You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
490 B
25 lines
490 B
|
|
typedef struct
|
|
{
|
|
char ville[31];
|
|
char dep[31];
|
|
int ddep;
|
|
int vcand;
|
|
}voeu;
|
|
|
|
typedef struct
|
|
{
|
|
int numcandid;
|
|
char surname[31];
|
|
char name[31];
|
|
float note[4];
|
|
int nbchoix;
|
|
voeu* TabVoeu[20];
|
|
}candidat;
|
|
|
|
candidat* LoadCandid(void);
|
|
void SaveCandid(int nbcandidat,candidat *tcandidat);
|
|
void RechercheCandidat(int ID, int nbcandidat,candidat* tcandidat);
|
|
void ListeCandidat(int nbcandidat,candidat *tcandidat);
|
|
//void gestionPhaseCandidatures(); A FAIRE.
|