If the initial value of the loop variable is equal to the final value of in a for...next loop then ?
Answers
Answered by
1
Answer:
control will not go inside the loop or for once only.
Explanation:
If the initial value of let's say v=1,
then inside loop,
for(v=1,v<=1,v++){}
Here condition is satisfied for once and control goes inside it, and the whatever statement is written will be executed.
Otherwise, it wont execute for even once because condition does not met at the point of time.
Similar questions