Loops let you repeat a block of code multiple times. In C++, you can use for, while, and do while loops to handle repetitive tasks.
do while loop will always run its block at least once, even if the condition is false on the first check.
for — Best for known number of repetitionswhile — Best when you don't know how many times you need to repeatdo while — Like while, but guarantees at least one execution