void ECRIRE_TAB (int *TAB, int N) { /* Affichage des composantes du tableau */ while(N) { printf("%d ", *TAB); TAB++; N--; } printf("\n"); }