/* This is an example of a for loop */

main()
{
int index;

   for (index = 0;index < 6;index = index + 1)
     printf("The value of the index is %d\n",index);
}
FORLOOP.C
Κατεβάστε το πρόγραμμα στον υπολογιστή σας