Exercice avec la boucle WHILE






#include <stdio.h>

void main()
{
int i=0;
while(i<10)
{
printf(" Voici le nombre %d.",i);
printf("\n");
i++;
}
}