33 lines
653 B
C
33 lines
653 B
C
unsigned int saisie_entiers(
|
|
unsigned int tab[],
|
|
unsigned int taille_reelle
|
|
);
|
|
|
|
void copie(
|
|
const unsigned int tab_in[],
|
|
unsigned int tab_out[],
|
|
unsigned int taille_pratique_in,
|
|
unsigned int taille_reelle_out
|
|
);
|
|
|
|
void afficher_tableau(
|
|
const unsigned int tab[],
|
|
unsigned int taille_pratique
|
|
);
|
|
|
|
bool sont_identiques(
|
|
const unsigned int tab1[],
|
|
const unsigned int tab2[],
|
|
unsigned int taille_pratique1,
|
|
unsigned int taille_pratique2
|
|
);
|
|
|
|
float moyenne_tableau(
|
|
const unsigned int tab[],
|
|
unsigned int taille_pratique
|
|
);
|
|
|
|
void somme_cumulee(
|
|
unsigned int tab[],
|
|
unsigned int taille_pratique
|
|
); |