Sintaks For Loop di C Stack Over Flow

for(--index ; index>=0 ; --index)     // (--index) instead of (forInit) 
{
    //code
}
Grumpy Giraffe