0
Pls tell me by what c++ means by nesting
Pls reply
2 ответов
+ 3
nesting means one element is contained inside the other similar element.
eg. nesting of if
if (cond1)
{
if (cond2)
{
statement;
}
}
nesting of for loop
for(I=1;I<n;I++)
{
for(j=1;j<n;j++)
{
statement;
}
}
0
thnx