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.

15 lines
277 B

#include "sae.h"
int main(void)
{
ListeDept ldept;
ldept = listenouv();
ldept = ajouterEnTete(ldept, "Informatique", "John Doe", 15);
ldept = ajouterEnTete(ldept, "Bio", "Ryan Taro", 20);
afficherListe(ldept);
ldept = supprimerEnTete(ldept);
afficherListe(ldept);
}