I’m so used to typing
for (int i = 0; i < n; ++i) { ... }
in C++ that it’s a pain to use a non-C99 compiler where I am forced to say
int i;
for (i = 0; i < n; ++i ) { ... }
I’m so used to typing
for (int i = 0; i < n; ++i) { ... }
in C++ that it’s a pain to use a non-C99 compiler where I am forced to say
int i;
for (i = 0; i < n; ++i ) { ... }