For loop can go forward. - C Statement

C examples for Statement:for

Description

For loop can go forward.

Demo Code

#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);
}

Result


Related Tutorials