unsigned int i=10;
while(i>=0)
{
printf("Hi");
i--;
}
why the result is an infinite loop??- [c-prog] plzz help to understand titli_juit
- Re: [c-prog] plzz help to understand Thomas Hruska
- Re: [c-prog] plzz help to understand Mladen Milankovic
unsigned int i=10;
while(i>=0)
{
printf("Hi");
i--;
}
why the result is an infinite loop??