sysdis-tp/calculs.h

16 lines
249 B
C
Raw Permalink Normal View History

2017-02-14 08:31:49 +00:00
#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