answersLogoWhite

0

Nested loop, you mean; one loop in the other loop, eg:

for (i=0; i<10; ++i) {

for (j=0; j<i; ++j) {

printf ("i=%d, j=%d\n", i, j);

}

}

User Avatar

Wiki User

16y ago

What else can I help you with?