On 3/1/06, Skip Tavakkolian <[EMAIL PROTECTED]> wrote:
> when it was added to C++, i "felt" that the scope
> of 'i' wasn't natural; it goes beyond 'for's closure.
> i like a behavior like this:
>
> { int i; for (i = 0, ...) ...; }This (the way you like it) is the way it was eventually standardized in C++. Any modern compiler that I have used does it this way.
