Search:

Type: Posts; User: msh

Search: Search took 0.01 seconds.

  1. Is this entirely subjective, or is there a reason...

    Is this entirely subjective, or is there a reason for using for( ;; )? I've seen it used, and I understand that it's valid, but I couldn't understand why it's used over while(1).

    My bad, and noted...
  2. Just for the future. :) // It's better to do...

    Just for the future. :)


    // It's better to do this...
    while (1) {
    ...
    if (condition) break;
    ...
    }
Results 1 to 2 of 2