April 25, 2024

Telugu Tech Tuts

TimeComputers.in

C in Telugu Nested For Part 23

C in Telugu Nested loop

In many cases we may use loop statement inside another looping statement. This type of looping is called nested loop. In nested loop the inner loop is executed first and then outer. The nested loop must be used to input or output multi-dimensional array elements.

Syntax:

The syntax for a nested for loop statement in C is as follows:

for ( init; condition; increment )
{
for ( init; condition; increment )
{
statement(s);
}
statement(s);
}