0
loops statements
can you please explain to me the operation of this statement.. (i = 0; i < 100;i++)
2 Respuestas
+ 2
step 1: initialise that is i=0, then
step 2: check condition then go inside the loop body(no loop body in ur example off course ).
step 3: now after performing the tasks of loop body , do increment then again step 2 then step 3 and so on till condition holds
I'll again tell with code example if u didn't get coz it's a critical doubt , it kept me messed up in challenges in the start
0
I'll be waiting bro... thanks a lot.. highly appreciated