/******************************************************************************
Welcome to GDB Online.
GDB online is an online compiler and debugger tool for C, C++, Python, PHP, Ruby,
C#, VB, Perl, Swift, Prolog, Javascript, Pascal, HTML, CSS, JS
Code, Compile, Run and Debug online from anywhere in world.
*******************************************************************************/
#include <stdio.h>
int main()
{
printf("Tableau 1 \n");
int tab[6] = {15,11,10,14,18,5};
for(int i = 0 ; i < 6 ; i++) {
printf(" %d ", tab[i]);
}
return 0;
}