Computer Science, asked by honeyvasp, 1 year ago

What are Nested loops? Explain them with any one star pattern program in c.

Answers

Answered by ıtʑFᴇᴇʟɓᴇãᴛ
4

Nested loop means a loop statement inside another loop statement. That is why nested loops are also called as “loop inside loop“.

Syntax for Nested For loop:-

for ( initialization; condition; increment ) {

for ( initialization; condition; increment ) {

// statement of inside loop

}

// statement of outer loop

}

Similar questions