✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
int main(void)
{
int i;
i = 0;
do;
i++;
while (i < 10);
printf("fin programme\n");
return 0;
}
Que va afficher le programme ?