I see the following code
for (;;)
{
//body...
}
What does it mean?
It's a loop with no starting value or conditions, so it will go forever, similar to
while (true)
{
// body...
}
You'd need to use a break;
statement to get out of the loop.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With