Uploaded August 2026 | Updated September 2026, 1 week ago
In this C programming tutorial, we learn about the continue statement and how it is used inside loops to skip the remaining statements of the current iteration and move to the next iteration.
The video explains the continue statement with a practical jersey number example. A for loop is used to process jersey numbers from 1 to 10, where each number represents a jersey number that can be assigned to a player.
You will learn how to use an if condition with continue to skip specific jersey numbers. For example, jersey number 6 can be retired so that the statements responsible for processing and assigning that number are skipped, while the loop continues normally with the next jersey number.
The tutorial also explains that after continue is executed, the remaining statements in the current loop body are skipped, while the loop's updation and condition checking continue normally. Multiple jersey numbers can also be skipped using a logical OR condition.
The example uses a for loop, and the same continue statement concept can also be practiced with while and do while loops.
Our Website
LearningLad.com
Social Media
Facebook facebook.com/LearningLad
Twitter twitter.com/LearningLadEdu
Instagram instagram.com/LearningLadOfficial
In this C programming tutorial, we learn about the continue statement and how it is used inside loops to skip the remaining statements of the current iteration and move to the next iteration.
The video explains the continue statement with a practical jersey number example. A for loop is used to process jersey numbers from 1 to 10, where each number represents a jersey number that can be assigned to a player.
You will learn how to use an if condition with continue to skip specific jersey numbers. For example, jersey number 6 can be retired so that the statements responsible for processing and assigning that number are skipped, while the loop continues normally with the next jersey number.
The tutorial also explains that after continue is executed, the remaining statements in the current loop body are skipped, while the loop's updation and condition checking continue normally. Multiple jersey numbers can also be skipped using a logical OR condition.
The example uses a for loop, and the same continue statement concept can also be practiced with while and do while loops.
Our Website
LearningLad.com
Social Media
Facebook facebook.com/LearningLad
Twitter twitter.com/LearningLadEdu
Instagram instagram.com/LearningLadOfficial