✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
int main(void)
{
char tab[4];
tab[0] = 'a';
tab[1] = 'l';
tab[2] = 'l';
tab[3] = 'o';
printf("tab = %s\n", tab);
return 0;
}
Que donne l'exécution de ce programme ?