show/hide this revision's text 2 added in "typical" code to show side-by-side comparison

my experience is that most people use single letters, e.g.: i, j, k, ... or x, y, z, ... or a, br, c (for row/column) or w, h (for width/height) , etc...

but i learned a great alternative a long time ago, and have used it ever since: double letter variables.

// recommended style                  // "typical" single-letter style
                                  
for (ii=0; ii<10; ++ii) {             for (i=0; i<10; ++i) {
    for (jj=0; jj<10; ++jj) {             for (j=0; j<10; ++j) {
        mm[ii][jj] = ii * jj;                  m[i][j] = i * j;
    }                                     }
}                                     }

in case the benefit isn't immediately obvious: searching through code for any single letter will find many things that aren't what you're looking for. the letter i occurs quite often in code where it isn't the variable you're looking for.

show/hide this revision's text 1

my experience is that most people use single letters, e.g.: i, j, k, ... or x, y, z, ... or a, b, c, ...

but i learned a great alternative a long time ago, and have used it ever since: double letter variables.

for (ii=0; ii<10; ++ii) {
    for (jj=0; jj<10; ++jj) {
        mm[ii][jj] = ii * jj;
    }
}

in case the benefit isn't immediately obvious: searching through code for any single letter will find many things that aren't what you're looking for. the letter i occurs quite often in code where it isn't the variable you're looking for.