syntax of for loop in c stack over flow

Solutions on MaxInterview for syntax of for loop in c stack over flow by the best coders in the world

showing results for - "syntax of for loop in c stack over flow"
Amir
30 Mar 2018
1for(--index ; index>=0 ; --index)     // (--index) instead of (forInit) 
2{
3    //code
4}
5