1 Answers

Answer: Option 3

Syntax: continue ; Causes control to pass to the end of the innermost enclosing while, do, or for statement, at that point the loop continuation condition is re-evaluated. Example: for(i = 0; i ++){ if(array[i] == 0) continue; array[i] = 1/array[i]; }

4 views

Related Questions