How does while loop work?

How does while loop work?

Every loop have a condition to stop, in while we need to check the condition before we iterate, so if the condition is true than we can iterate if not so we get out from the while loop and go to another instruction.
And all of that is without using google 😎.

Commentaires