

InterviewSolution
Saved Bookmarks
1. |
what is for loop and while loop |
Answer» The for loop do have all its declaration (initialization, condition, iteration) at the top of the body of the loop whereas in while loop only initialization and condition is at the top of the body of loop and iteration may be written anywhere in the body of the loop. | |