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;
}
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;
}