Computer Science, asked by Hardeep826, 1 year ago

The statements that transfer control to the beginning of the loop is called

Answers

Answered by harvvii
16
The statement that transfer control to the beginning of the loop is called continue statement.
Answered by omegads03
3

The statement that transfer control to the beginning of the loop is called the continue statement.

In C language programming, the continue statement forces the next iteration to be executed without skipping any intermediate statements in the loop. In case of for loop, the continue statement causes the test of the condition and increment of the loop. In case of do..while and while loops the continue statement control of the program to pass to the conditional tests.

Similar questions