according to me following while loop should be infinite but it runs only thrice
main()
{
int i=3;
while(i--)
{
int i=100;
i--;
printf("%d..",i);
}
}
it outputs 99..99..99
but according to me it should run infinite times as every time control enters while loop it gets value 100.so it will never reach zero.
just to experiment i replaced int i=100;
with i=100;
in side the while loop and now it runs infinite times..WHY???
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…