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.

26 lines
308 B

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "commun.h"
typedef struct {
int nEtu;
char nom[20];
char prenom[20];
float moymat;
float moyfr;
float moyen;
float moyspe;
int nbchx;
}Candidat;
typedef struct {
char ville[20];
char dptmt[20];
int dec;
int valid;
}Choix;