#include #include #include typedef struct maillondept { char departement[30]; int nbPlaces; char nom[30]; struct maillondept* suiv; }MaillonDept; typedef MaillonDept* ListeDept; typedef struct { char ville[30]; ListeDept idDept; }VilleIUT;