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.

14 lines
300 B

#include "fonction.h"
int main(void) {
int tab[50], tailleL;
tailleL=chargementAdherent(tab,50);
affichageTest(tab,tailleL);
tailleL=ajouter(tab,tailleL,69,50);
affichageTest(tab,tailleL);
tailleL=suppression(tab,tailleL,69);
affichageTest(tab,tailleL);
return 0;
}