Home BCA What is the use of continue statement ? Explain with an example

What is the use of continue statement ? Explain with an example

Q. What is the use of continue statement ? Explain with an example.
ANS.Continue statement is mostly used inside loops. Whenever it is encountered inside a loop, control directly jumps to the beginning of the loop for next iteration, skipping the execution of statements inside loop’s body for the current iteration.
How this is used inside program?
continue;
Example: continue statement inside for loop
..
for (int j=0; j<=8; j++)
{
    if (j==4)
    {
          continue;
    }
    printf(“%d “, j);
}
..
Output:

0 1 2 3 5 6 7 8

NO COMMENTS

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Call us! +919811854308
WhatsApp us! +919811854308
Exit mobile version