efrei/programmation-c-cpp/tp3/affichage-tableaux.c

23 lines
405 B
C

/* Affichage tableaux */
#include <stdio.h>
#include <stdlib.h>
#define LONGUEUR_TABLEAU 5
int main() {
int tableau[LONGUEUR_TABLEAU] = {42, 35, 26, 40, 2};
for (int i = 0; i < LONGUEUR_TABLEAU; i++) {
printf("%d ", tableau[i]);
}
printf("\n");
for (int i = LONGUEUR_TABLEAU - 1; i >= 0; i--) {
printf("%d ", tableau[i]);
}
printf("\n");
return 0;
}