Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP
Posting-Version: version B 2.10.1 6/24/83; site arizona.UUCP
Path: utzoo!watmath!clyde!floyd!harpo!utah-cs!arizona!budd
From: budd@arizona.UUCP
Newsgroups: net.lang.c
Subject: little quiz
Message-ID: <9031@arizona.UUCP>
Date: Wed, 21-Mar-84 14:22:11 EST
Article-I.D.: arizona.9031
Posted: Wed Mar 21 14:22:11 1984
Date-Received: Thu, 22-Mar-84 02:29:09 EST
Organization: CS Dept, U of Arizona, Tucson
Lines: 14

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).