Guest_imported
New member
- Jan 1, 1970
- 0
i have small program.i want to know why this goes into infinite loop?when i print value of i it gives 1 after certain iterations . is not 1 >-1 why then this infinite loop
main()
{
unsigned int i;
for(i=-10;i<=-1;i++)
printf("%d",i);
}
main()
{
unsigned int i;
for(i=-10;i<=-1;i++)
printf("%d",i);
}