Renvoie les nombres entre I et 0
int i;
i = 9;
while (--i)
{
printf("%d", i);
}
Trevor Ochieng'
int i;
i = 9;
while (--i)
{
printf("%d", i);
}