As I alreay said, some languages use the simpler construct:
For i=1 to N
And C could easily use:
for(i=1;i==n;i++)
just by changing the way the loop condition works.
So as you say, it is all about the language.
As I alreay said, some languages use the simpler construct:
For i=1 to N
And C could easily use:
for(i=1;i==n;i++)
just by changing the way the loop condition works.
So as you say, it is all about the language.