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
In general it is ok, there's nothing to worry about. It is about of programmer's preferences.
I prefer while(true), from my point of view it is more elegant form of infinite loop. Someone else may prefer for(;;) approach.
while(true)
for(;;)