#include #include int main() { int tab[10]; for(int i = 0; i < 10; ++i) { tab[i] = (i+1)*2; } printf("Le tableau contient les premiers 10 nombres pairs: \n"); for(int i = 0; i < 10; ++i) { printf("%d ", tab[i]); } printf("\n"); return EXIT_SUCCESS; }