Examveda
Examveda

Which command is used to skip the rest of a loop and carry on from the top of the loop again?

A. break

B. resume

C. continue

D. skip

E. None of these

Answer: Option C

Solution(By Examveda Team)

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 < 20; i++){
   if(array[i] == 0)
      continue;
   array[i] = 1/array[i];
}

This Question Belongs to C Program >> Control Structures

Join The Discussion

Comments ( 1 )

  1. Shubham Sharma
    Shubham Sharma :
    9 years ago

    yes the ans. is continue
    because,continue is go directly to the statement from where loop is started.

Related Questions on Control Structures