+ 2
What does it mean to 'nest' in programming
8 odpowiedzi
+ 7
put this in that, e.g use one if in another if
if(a<b)
if(a<c)
do something.......
this is a nested if
+ 4
Nest means mix one code with another code like ul (unorder list)can be listed with ol (order list)😉
+ 2
It means to put inside something. Here is an example of useful nested for loops
https://code.sololearn.com/cN83PDBjfLMn/?ref=app
+ 2
if a "for" loop comes in an another "for" loop
for( * * * *){
for(* * * *){
//do something
}
}
it's called nested for loop
+ 1
To nest means adding a condition inside a condition
+ 1
Nest means combining a code with another
0
I think syntax will clear the doubt
0
Nesting of block
Means there are one block inside the another block ..
The outer block is called also parent block and inner block is called child block