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
341 B
14 lines
341 B
#include "adherent.h"
|
|
|
|
int main(void){
|
|
int tabCarte[10] = {1, 2, 3, 4, 5, 6, 7, 8, 9};
|
|
int tabEtat[10] = {1, 1, 1, 1, 1, 1, 1, 1, 1};
|
|
int tabPoint[10] = {0};
|
|
|
|
int taillePhysique = 10;
|
|
int tailleLog = 9;
|
|
|
|
int err = SupprimerAdherent(&tailleLog, tabCarte, tabEtat, tabPoint);
|
|
|
|
printf("\nCode erreur : %d\n", err);
|
|
} |