#include #include #include #include /* Partie 1 */ typedef struct maillonDept { char departement[30]; int nbP; char resp[30]; struct maillonDept *suiv; } MaillonDept, *ListeDept; typedef struct { char ville[30]; ListeDept ldept; } VilleIUT;