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

24 lines
405 B
C
Raw Normal View History

2021-11-02 13:24:17 +01:00
/* 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;
}