13.05.2014, 13:55
Quote:
If you use "<=" in C you are most likely doing it wrong there too.
|
We use it on arrays, so let's say an array has 10 cells, instead of writing
for( I = 0; I < 10; I++)
we'd write
for( I = 0; I <=9; I++)
It has the same effect.
It means that it would continue as long as I is smaller or equal to 9.