little quiz

budd at arizona.UUCP budd at arizona.UUCP
Thu Mar 22 05:22:11 AEST 1984


While we are discussing C, how many people believe that

        for (initial; test; update) statement;

is ALWAYS equivalent to

        initial;
        while (test) {
                statement;
                update;
                }

how many people can cite the exception to the above rule?  (ie, one
clearcut case where they produce different results).



More information about the Comp.lang.c mailing list