2
112kviews
Explain difference between for, while and do while loop.
1 Answer
4
18kviews
Sr. No For loop While loop Do while loop
1. Syntax: For(initialization; condition;updating), { . Statements; } Syntax: While(condition), { . Statements; . } Syntax: Do { . Statements; } While(condition);
2. It is known as entry controlled loop It is known as entry controlled loop. It is known as …

Create a free account to keep reading this post.

and 4 others joined a min ago.

Please log in to add an answer.