write the various iteration statements in C++ with syntax
Answers
Answered by
1
Answer:
while
Explanation:
while(condition) {
// loop of the body
}
Similar questions