Difference between “while” loop and “do while” loop

前端 未结 16 1109
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-12-13 06:44

What is the difference between while loop and do while loop. I used to think both are completely same.Then I came across following piece of code:

do {
                


        
16条回答
  •  爱一瞬间的悲伤
    2020-12-13 07:19

    In WHILE first check the condition and then execute the program In DO-WHILE loop first execute the program at least one time then check the condition

提交回复
热议问题