Computer Science, asked by anish8596, 11 months ago

c language nesting of loop​

Answers

Answered by charlie1505
0

Answer:

A loop inside another loop called as nested loop.

We can define any number of loop inside another loop and also put any type of loop in another type.

We can write a for loop inside while loop, while inside another while , if inside while or for loop etc

Syntax for nesting loop-

Outer loop

{

inner loop

{

}

}

Example-

Here for is an outer loop and if is a inner loop

for(initialize;condition;increment/decrement)

{

if (condition)

{

}

}

Answered by Anonymous
0

Explanation:

 nested loop join is a naive algorithm that joins two sets by using two nested loops. Join operations are important for database management

Similar questions