[Previous] pretty | Home | [Next] This Just In: Kids Might Not Be Stupid

programmers only

Here's an example of terrible structure, but fine denotation:

global int i, j;
for(j=0; j < 10; j++)
{
    i = j;
    for(j=0; < 10; j++)
        print( my_array[i][j] )
    j = i;
}

Elliot Temple on January 10, 2004
Want to discuss this? Join my forum.