C Условни Оператори, for, while, if.

From Ilianko

For

 
 int i, max = 5;
  for(i = 0; i < max; i++)
  {
        printf("%d\n",i);
  }