Find the output for the following? FOR x= 4 to 1 STEP 1 PRINT x NEXT x
Answers
Answered by
0
Answer:
Here For loop is a count down loop then the step value should be negative.
But given step value +1 so the body of the loop will never be executed.
Similar questions