+ 1
What does it mean :- for(;;) in for loop..
3 Respostas
+ 6
See for loops: https://www.tutorialspoint.com/cplusplus/cpp_for_loop.htm
for( initializer ; condition ; increment )
so if we leave these blank we get an infinite loop.
0
for(;;) means loop forever. It can exist if encounter a break statement.