syntax of for loop in c stack over flow code example
Example: syntax of for loop in c stack over flow
for(--index ; index>=0 ; --index) // (--index) instead of (forInit)
{
//code
}
for(--index ; index>=0 ; --index) // (--index) instead of (forInit)
{
//code
}