What are nested loops in c?

Answer:
Hi,
Nested loop is loop inside the loop.

example
for(i =0;i<0x12;i++)
{
for(j= 0;j<0x20;j++)
{
// sample of nested loop
}
}
First answer by Shashiraja999. Last edit by Shashiraja999. Contributor trust: 2 [recommend contributor recommended]. Question popularity: 1 [recommend question].