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.

16 lines
326 B

#include "sae.h"
int main(void)
{
ListeDept ldept;
ldept = listenouv();
ldept = ajouterEnTete(ldept, "Informatique", "John Doe", 150);
ldept = ajouterEnTete(ldept, "Bio", "Ryan Taro", 200);
afficherListe(ldept);
ajouter(ldept, "Chimie", "Henri Laserre", 80);
afficherListe(ldept);
printf("%d", longueur(ldept));
}