C examples for Statement:for
For loop can go forward.
#include <stdio.h> int main()//from w w w .j a v a 2 s .c o m { int count; for(count=10;count>0;count=count-1) printf("%d\n",count); printf("Ready or not, here I come!\n"); return(0); }