16 lines
249 B
C
16 lines
249 B
C
|
#ifndef _CALCULS_H_
|
||
|
|
||
|
typedef struct {
|
||
|
float moy;
|
||
|
int max;
|
||
|
int min;
|
||
|
}res_analyse_donnees;
|
||
|
|
||
|
long factoriel(int nb);
|
||
|
|
||
|
void analyser_donnees(int donnees[], int taille, res_analyse_donnees *res);
|
||
|
|
||
|
long puissance(int nb, int puiss);
|
||
|
|
||
|
#endif
|