✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
/* Le charactere ASCII 65 est un A majuscule, le 66 un B, etc...*/
int main (void)
{
int i;
char pchar[5];
for(i=0;i<10;i++)
{
pchar[i]=(i+65);
}
pchar[7]='\0';
printf("%s",pchar);
return (0);
}
Que donne l'exécution de ce programme ?