Mega Code Archive
Categories
/
C Tutorial
/
Statement
Between a while loop and a for loop
for(A;B;C){ printf("%d\t",i); } It becomes A; while(B) { printf("%d\t",i); C; }