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.
-- 
nickname: Lele Gaifax | Quando vivrò di quello che ho pensato ieri
real: Emanuele Gaifas | comincerò ad aver paura di chi mi copia.
l...@metapensiero.it  |                 -- Fortunato Depero, 1929.

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to