Continue Statement : Skipping Part of Loop in C Programming

Continue Statement :

loop
{
  continue;
  //code
}

Note :

  • It is used for Skipping part of Loop.
  • Continue causes the remaining code inside a loop block to be skipped and causes execution to jump to the top of the loop block

Loop
Use of Continue !!
for
while
do-while