Between a while loop and a for loop : While Loop « Statement « C Tutorial






for(A;B;C){
     printf("%d\t",i);
}

It becomes


A;
while(B)
{
      printf("%d\t",i);
      C;
}








6.7.While Loop
6.7.1.The while loop
6.7.2.Between a while loop and a for loop
6.7.3.Put function into while loop condition statement
6.7.4.While loop and sum integers
6.7.5.while loop nested in a for loop