On 2013-04-16, Lele Gaifax <l...@metapensiero.it> wrote: > Neil Cerutti <ne...@norwich.edu> writes: > >> Imagine something like the following for loop taking place >> somewhere: >> >> for (int i = 2; i <= 0; --i) { >> fprintf(a[i]); >> } > > Neil most probably meant > > for (int i = 2; i >= 0; --i) { > fprintf(a[i]); > } > > where "fprintf" is actually a fictitious "do_something" function. > > ciao, lele.
Thanks for the correction. -- Neil Cerutti -- http://mail.python.org/mailman/listinfo/python-list