#include void Afficher_Tab(int n, int t[]); void Saisir_Tab(int n, int t[]); double Moyenne_Tab(int n, int t[]); int main(void){ int n; do { printf("Combien d'elements dans le tableau (MAX=100) ? "); scanf("%d",&n); } while (n>100); int a[n]; Saisir_Tab(n, a); Afficher_Tab(n, a); printf("La moyenne est : %g\n", Moyenne_Tab(n, a)); return 0; } void Afficher_Tab(int n, int t[]){ for(int i=0 ; i