Computer Science, asked by Anonymous, 1 year ago

what is the different between while loop and do while loop.

Answers

Answered by irfanmessi
2
HERE YOUR ANSWER ......

THE SHAPE THAT CURVES AROUND IS LOOP...

DO LOOP ...WHICH CONNECTED TO BEGINNING....

HOPE IT MAY HELP YOU...

IF U LIKE MARK ME AS BRAINLIEST PLEASE
Answered by kumard0638pcbdzp
11
In C, do...while loop is very similar to while loop. Only difference between these twoloops is that, in while loops, test expression is checked at first but, indo...while loop code is executed at first then the condition is checked. So, the code are executed at least once in do...while loops.
Similar questions