Statement C Tutorial

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