
struct Personne {
  int id;
  char nom[31];
  char prenom[31];
  char telephone[11]; /* Attention ! pensez au \0 à la fin de la chaîne */
};
