+ 1
loop question
what does for(;;)s means ?
4 Respostas
+ 5
Sometimes you want to keep a loop running until you decide manually from within the loop that it should end.
for (;;) {
// code
if (some_condition)
break;
+ 2
HonFu thanks, i get it .
+ 1
Coffee☕Underrun thanks , but why we use it?