0
Can someone simply define do while loops and all that in c++
can't get my head around it when c++ tutorial starts getting into loops and stuff
2 Answers
0
when we want to execute block of code many times, we use loops
do while loop execute code at least one time
do " this code" then check condition if true repeat "this code " then check condition again, and so on.
0
gotcha