doesn't matter. You can still get readable source out of them, just structured differently from the source you put into the compiler.
After all, for (int i=0; i<2; i++) {
x[i] = i;
}
is functionally identical to
x[0] = 0;
x[1] = 1;
x[2] = 2;
except the latter executes a bit faster and uses sizeof(int) less memory.