> now means
> 
>       { int i; for(i=0; i<10; i++); }

Does that mean the following will compile?

void
f(void)
{
        i = 3;
        put(i);
        for (int i = 0; i < 3; i++)
                put(i);
        if (i == 4) put(4);
}

Reply via email to