Answer:
DO..WHILE loops are useful for things that want to loop at least once. The structure is
do {
} while ( condition );
do {
} while ( condition );
Previous Question | Next Question |
What is while loops? | What is functions Syntax in C++? |
Previous Question | Next Question |
What is while loops? | What is functions Syntax in C++? |