You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The difference between do while and while is that while will check the condition before executing the input , i.e. there is a chance that the program may not be executed even once. But in case of do_while, the program will be executed atleast once because here, we execute the command first and then check whether it satisfies the condition or not.