+ 1
What is the difference between for loop n while loop?
I m confused in these loops
2 Answers
+ 2
for loop takes all the values in one go whereas while loop first accepts the value and increment or decrement the value at the last of the loop
0
A for loop does something a particular number of times. A while loop does something while it is true.