unsigned int i=10;
while(i>=0)
{
printf("Hi");
i--;
}

why the result is an infinite loop??

Reply via email to