What are the bodies of For each Loop?

What are the bodies of the first for loop?

I have this in C++ like this

for () //Loop 1
{
	for ()//Loop 2
	{
		for ()//Loop 3
		{
		}
	}for ()//Loop 4
	{

	}
}

is this fine? the Loop 1 is the main and everything goes under it?

that is correct

1 Like

Thank you Sir for consultation :slight_smile: , very appreciated