diff --git a/.gitignore b/.gitignore index ebd3a60..69c2fd1 100644 --- a/.gitignore +++ b/.gitignore @@ -22,3 +22,4 @@ tables-multiplication triangle-des-etoiles factorielle calculatrice +affichage-tableaux diff --git a/programmation-c-cpp/tp3/affichage-tableaux.c b/programmation-c-cpp/tp3/affichage-tableaux.c new file mode 100644 index 0000000..6154137 --- /dev/null +++ b/programmation-c-cpp/tp3/affichage-tableaux.c @@ -0,0 +1,23 @@ +/* Affichage tableaux */ + +#include +#include + +#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; +}