/******************************************************************************
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 de caractères \n");
char tab[8] = {'p','i','k','a','c','h','u','\0'};
printf("%s\n", tab);
for (int i = 0 ; i < sizeof(tab) ; i++) {
printf("%c\n", tab[i]);
}
return 0;
}