I am trying to understand the concept behind the for loop example
for (;;) { //write code }
I understand what it does and how it\'s the sa
This is just a matter of personal preference. For instance I much prefer this style:
while (true) { // Do infinite task }
It all comes down to readability, go with whatever is easy for you to read and understand months later.