typedef struct
{
    char nom[20] ; /* premier des 3 champs de ce type structuré */
    char prenom[20] ;
    short int an_naiss ;
} T_personne ; /* nom du type structuré */
