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