Computer Science, asked by fabvi, 1 year ago

what is nested loop

Answers

Answered by OmAniketMajhi
7
Nested loop is a loop inside another loop.
Answered by stuti49
13
a loop within loop is called nested loop.
it can be applied when the internal loop repeats for a given no. of times for each iteration of external loop.
 
loop1(cond.1)
{ --------
----------
loop 2(cond. 2)
{---------- 
-----------
loop 3(cond.3)
{-----------
-------------
}
}}
Similar questions