answersLogoWhite

0

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";
}
...

User Avatar

Wiki User

15y ago

What else can I help you with?