Search:

Type: Posts; User: Tclausex

Search: Search took 0.01 seconds.

  1. Replies
    7
    Views
    1,146

    That is not the case. row increases at the...

    That is not the case. row increases at the bottom of the loop - but that depends on the loop executing, which requires the test expression to be true for each iteration. The loop stops (or never...
  2. Replies
    7
    Views
    1,146

    Your main problem is boolean test expression in...

    Your main problem is boolean test expression in your for() loops. The for loop will loop only as long as the expression evaluates to true (non-zero). So, if row doesn't equal x - 1, the first loop...
Results 1 to 2 of 2