0
Variable definitions
Atleast it used to be like this: int i; for (i... Since when is this okay? for (int i... Thanks :)
2 ответов
+ 6
The former was used in C89, the first C standard, as it was the only possible way in old C because variables had to be declared at the top of the block.
The latter one was introduced in I believe C99, a little over 20 years ago, so, a pretty long time already. :)
+ 2
Gotcha, thanks. I'm old ;D