What is an infinate loop?

1 answer

Answer

1034704

2026-07-24 15:55

+ Follow

It's when your loop does not limit where it's suppose to stop, for instance:

...
for (int i(0); i > 0; i++)
{
cout << endl << "Infinite loop";
}
...

ReportLike(0ShareFavorite

Copyright © 2026 eLLeNow.com All Rights Reserved.