#include <stdio.h> /* directive du preprocesseur */
#define TAILLE 8
void main() {
int t[8];
int i;
printf( "Entrez moi %d entiers :",TAILLE);
for (i=0; i=0; i--)
printf("%d ",&t[i]);
}
void minmax(int t[], int * min, int * max) {
int i;
*min = *max = a[0];
for ( i = 1; i < TAILLE ; i++ ) {
if (t[i]<*min) *min = t[i];
else if (t[i]>*max) *max = t[i];
}
} |