== Quote from Ellery Newcomer ([email protected])'s article > On 01/08/2011 02:37 PM, Iain Buclaw wrote: > > > > Never let indentation fool you, the else clause will be assumed to be for > > the > > first condition. :o) > I don't believe you
Are you saying it *isn't* interpreted as:
if (i)
if (j)
printf("J true\n");
else
printf("I false\n");
:o
