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.
30 lines
906 B
30 lines
906 B
#include <stdio.h>
|
|
|
|
|
|
int recherche(int tabTri[], int val, int nb, int *trouve);
|
|
|
|
|
|
void decalageDroite(int tabTri[], int nb, int pos);
|
|
|
|
|
|
void decalageGauche(int tabTri[], int nb, int pos);
|
|
|
|
|
|
|
|
int ajouter(int tab[], int nb, int val, int tphys);
|
|
|
|
int ajouterAdherent(int tabAdhe[], int tabPoints[], int jour[], int mois[], int annee[], int carte[], int nb, int tmax);
|
|
|
|
|
|
|
|
int suppression(int tab[], int tabPoints[], int nb, int val);
|
|
|
|
|
|
int chargementAdherent(int tabAdherent[], int tabPoints[], int jour[], int mois[], int annee[], int carte[], int tphys);
|
|
|
|
|
|
void affichageTous(int tabNumCarte[], int tabPoint[], int carte[], int jour[], int mois[], int annee[],int taille);
|
|
|
|
void affichageCarte(int tabAdhe[], int tabPoints[], int jour[], int mois[], int annee[], int carte[], int nb);
|
|
|
|
int SauvegardeAdherent(int tabAdherent[], int tabPoints[], int jour[], int mois[], int annee[], int carte[], int tailleL); |